aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmldom/domdata/domitem/checkScopes.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmldom/domdata/domitem/checkScopes.qml')
-rw-r--r--tests/auto/qmldom/domdata/domitem/checkScopes.qml11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/qmldom/domdata/domitem/checkScopes.qml b/tests/auto/qmldom/domdata/domitem/checkScopes.qml
new file mode 100644
index 0000000000..39903e9d90
--- /dev/null
+++ b/tests/auto/qmldom/domdata/domitem/checkScopes.qml
@@ -0,0 +1,11 @@
+import QtQuick
+
+Item {
+ id: root
+ property int myInt
+ property int myInt2
+
+ myInt: 42
+ myInt2: 123
+
+}