diff options
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/data/jsmoduleimport.qml')
| -rw-r--r-- | tests/auto/qml/qmlcppcodegen/data/jsmoduleimport.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcppcodegen/data/jsmoduleimport.qml b/tests/auto/qml/qmlcppcodegen/data/jsmoduleimport.qml new file mode 100644 index 0000000000..d9a4fc29fb --- /dev/null +++ b/tests/auto/qml/qmlcppcodegen/data/jsmoduleimport.qml @@ -0,0 +1,7 @@ +import QtQml 2.0 +import "script.mjs" as Script + +QtObject { + property bool ok: Script.ok() + property var okFunc: Script.ok +} |
