aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml')
-rw-r--r--tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml b/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml
deleted file mode 100644
index 54b548e049..0000000000
--- a/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-import Test 1.0
-import QtQuick 2.0
-
-QtObject {
- property alias obj : otherObj
- property variant child
- child: QtObject {
- id: otherObj
- property int myValue: 10
- }
-}
-