aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlengine/data/repeatedCompilation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlengine/data/repeatedCompilation.qml')
-rw-r--r--tests/auto/qml/qqmlengine/data/repeatedCompilation.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlengine/data/repeatedCompilation.qml b/tests/auto/qml/qqmlengine/data/repeatedCompilation.qml
new file mode 100644
index 0000000000..797381e54c
--- /dev/null
+++ b/tests/auto/qml/qqmlengine/data/repeatedCompilation.qml
@@ -0,0 +1,9 @@
+import QtQuick 2.0
+
+VMEExtendVMEComponent {
+ property bool success: false
+
+ Component.onCompleted: {
+ success = (foo == 'bar') && (bar == 'baz')
+ }
+}