aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/noQQmlData.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/data/noQQmlData.qml')
-rw-r--r--tests/auto/qml/qmlcppcodegen/data/noQQmlData.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcppcodegen/data/noQQmlData.qml b/tests/auto/qml/qmlcppcodegen/data/noQQmlData.qml
new file mode 100644
index 0000000000..47e1d34183
--- /dev/null
+++ b/tests/auto/qml/qmlcppcodegen/data/noQQmlData.qml
@@ -0,0 +1,10 @@
+import QtQml
+import TestTypes
+
+BirthdayParty {
+ id: party
+ property string inDaHouse: " in da house!"
+ property string n: host.name + inDaHouse
+ function burn() { host = mrBurns.createObject(); }
+ property Component mrBurns: Person { name: "Mr Burns" }
+}