aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/commentInEnum.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlformat/data/commentInEnum.qml')
-rw-r--r--tests/auto/qml/qmlformat/data/commentInEnum.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlformat/data/commentInEnum.qml b/tests/auto/qml/qmlformat/data/commentInEnum.qml
new file mode 100644
index 0000000000..3a1b15d278
--- /dev/null
+++ b/tests/auto/qml/qmlformat/data/commentInEnum.qml
@@ -0,0 +1,12 @@
+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
+ }
+
+}