aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/statesAndTransitions.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlformat/data/statesAndTransitions.qml')
-rw-r--r--tests/auto/qml/qmlformat/data/statesAndTransitions.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlformat/data/statesAndTransitions.qml b/tests/auto/qml/qmlformat/data/statesAndTransitions.qml
new file mode 100644
index 0000000000..648bdce6b9
--- /dev/null
+++ b/tests/auto/qml/qmlformat/data/statesAndTransitions.qml
@@ -0,0 +1,10 @@
+QtObject {
+ id: foo
+
+ states: [ State {} ]
+ transitions: [ Transition {} ]
+
+ // This needs to be *before* states and transitions after formatting
+ Item {}
+
+}