aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/multiforeign.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/data/multiforeign.qml')
-rw-r--r--tests/auto/qml/qmlcppcodegen/data/multiforeign.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcppcodegen/data/multiforeign.qml b/tests/auto/qml/qmlcppcodegen/data/multiforeign.qml
new file mode 100644
index 0000000000..0db62fe875
--- /dev/null
+++ b/tests/auto/qml/qmlcppcodegen/data/multiforeign.qml
@@ -0,0 +1,10 @@
+pragma Strict
+import TestTypes
+import QtQml
+
+QtObject {
+ objectName: f1.location + " and " + f2.location
+ property Foreign1 f1: Foreign1 { location: "not here" }
+ property Foreign2 f2: Foreign2 { location: "not there" }
+
+}