aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcachegen/data/jsimport.qml
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-03-26 01:00:06 +0100
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-03-26 01:00:06 +0100
commitfbd86c6a24ee4999d724f9aaccf1941d02538187 (patch)
treece734921c9804eff76498b77e24742c71b1aafff /tests/auto/qml/qmlcachegen/data/jsimport.qml
parenta8cc4f2b51722380a30fae0009205db917feb7a9 (diff)
parent0dab320fb42ba2ac855baf05972c3420c11d002e (diff)
Merge remote-tracking branch 'origin/5.13' into dev
Diffstat (limited to 'tests/auto/qml/qmlcachegen/data/jsimport.qml')
-rw-r--r--tests/auto/qml/qmlcachegen/data/jsimport.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcachegen/data/jsimport.qml b/tests/auto/qml/qmlcachegen/data/jsimport.qml
new file mode 100644
index 0000000000..9c40878e60
--- /dev/null
+++ b/tests/auto/qml/qmlcachegen/data/jsimport.qml
@@ -0,0 +1,6 @@
+import QtQml 2.0
+import "script.js" as Script
+
+QtObject {
+ property int value: Script.getter()
+}