aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/sharedAttachedObject.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/sharedAttachedObject.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/sharedAttachedObject.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/sharedAttachedObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/sharedAttachedObject.qml
deleted file mode 100644
index b967f0984c..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/sharedAttachedObject.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-import Qt.test 1.0
-import QtQuick 2.0
-
-MyQmlObject {
- id: root
- property bool test1: false
- property bool test2: false
-
- MyQmlObject.value2: 7
-
- Component.onCompleted: {
- test1 = root.MyQmlObject.value2 == 7;
- test2 = root.MyQmlObjectAlias.value2 == 7;
- }
-}
-