aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/tooling_imports/Second/CheckIt.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/cmake/tooling_imports/Second/CheckIt.qml')
-rw-r--r--tests/auto/cmake/tooling_imports/Second/CheckIt.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/cmake/tooling_imports/Second/CheckIt.qml b/tests/auto/cmake/tooling_imports/Second/CheckIt.qml
new file mode 100644
index 0000000000..6bf8659bfc
--- /dev/null
+++ b/tests/auto/cmake/tooling_imports/Second/CheckIt.qml
@@ -0,0 +1,7 @@
+import QtQml 2.0
+import First
+
+QtObject {
+ property DoSomething otherModule: DoSomething {}
+ property int dummy: otherModule.success + 13
+}