aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.9.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.9.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.9.qml19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.9.qml b/tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.9.qml
deleted file mode 100644
index f5aca28417..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/propertyVar.9.qml
+++ /dev/null
@@ -1,19 +0,0 @@
-import QtQuick 2.0
-import Qt.test 1.0
-
-Item {
- property bool test: false
-
- MyQmlObject {
- id: qmlobject
- intProperty: 5
- }
- property var qobjectVar: qmlobject
- property int bound: qobjectVar.intProperty
-
- Component.onCompleted: {
- if (bound != 5) return;
-
- test = true;
- }
-}