aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/assignCompositeToType.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmllanguage/data/assignCompositeToType.qml')
-rw-r--r--tests/auto/qml/qqmllanguage/data/assignCompositeToType.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmllanguage/data/assignCompositeToType.qml b/tests/auto/qml/qqmllanguage/data/assignCompositeToType.qml
new file mode 100644
index 0000000000..717cd84536
--- /dev/null
+++ b/tests/auto/qml/qqmllanguage/data/assignCompositeToType.qml
@@ -0,0 +1,18 @@
+import QtQuick 2.0
+import Test 1.0
+
+QtObject {
+ property QtObject myProperty
+ property QtObject myProperty2
+ property QtObject myProperty3
+ property QtObject myProperty4
+ property MyQmlObject myProperty5
+ property MyQmlObject myProperty6
+
+ myProperty: CompositeType {}
+ myProperty2: CompositeType2 {}
+ myProperty3: CompositeType3 {}
+ myProperty4: CompositeType4 {}
+ myProperty5: CompositeType2 {}
+ myProperty6: CompositeType4 {}
+}