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