aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/invalidIdLookup.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmllint/data/invalidIdLookup.qml')
-rw-r--r--tests/auto/qml/qmllint/data/invalidIdLookup.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/invalidIdLookup.qml b/tests/auto/qml/qmllint/data/invalidIdLookup.qml
new file mode 100644
index 0000000000..b351e5cfea
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/invalidIdLookup.qml
@@ -0,0 +1,10 @@
+import Things
+import QtQml
+
+QtObject {
+ property MediaPlayerStateMachine m: MediaPlayerStateMachine {
+ id: stateMachine
+ }
+
+ objectName: stateMachine.objectName
+}