aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/commentInEnum.formatted.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlformat/data/commentInEnum.formatted.qml')
-rw-r--r--tests/auto/qml/qmlformat/data/commentInEnum.formatted.qml11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlformat/data/commentInEnum.formatted.qml b/tests/auto/qml/qmlformat/data/commentInEnum.formatted.qml
new file mode 100644
index 0000000000..583c315c4b
--- /dev/null
+++ b/tests/auto/qml/qmlformat/data/commentInEnum.formatted.qml
@@ -0,0 +1,11 @@
+import QtQml
+
+QtObject {
+ // This to enum
+ enum Foo {
+ A = 3, // This is A
+ B, // This is B
+ C = 4, // This is C
+ D // This is D
+ }
+}