aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllistreference/data/engineTypes.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmllistreference/data/engineTypes.qml')
-rw-r--r--tests/auto/qml/qqmllistreference/data/engineTypes.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmllistreference/data/engineTypes.qml b/tests/auto/qml/qqmllistreference/data/engineTypes.qml
new file mode 100644
index 0000000000..99a61a7680
--- /dev/null
+++ b/tests/auto/qml/qqmllistreference/data/engineTypes.qml
@@ -0,0 +1,9 @@
+import QtQuick 2.0
+
+QtObject {
+ property list<MyType> myList
+
+ myList: [ MyType { a: 1 },
+ MyType { a: 9 } ]
+
+}