aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml b/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml
deleted file mode 100644
index 061eda0e54..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import Qt.test 1.0
-import Qt.test 1.0 as Namespace
-
-MyQmlObject {
- id: me
- property int a: MyQmlObject.value
- property int b: Namespace.MyQmlObject.value
- property int c: me.Namespace.MyQmlObject.value
- property int d: me.Namespace.MyQmlObject.value
-}
-