aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_21580.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/qtbug_21580.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/qtbug_21580.qml22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_21580.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_21580.qml
deleted file mode 100644
index dc0066ba3f..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_21580.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import QtQuick 2.0
-
-QtObject {
- property bool test: false
-
- property list<QtObject> objects: [
- QtObject {
- id: first
- property alias myAlias: other.myProperty
- onMyAliasChanged: if (myAlias == 20) test = true
- },
- QtObject {
- id: other
- property real myProperty
- }
- ]
-
- Component.onCompleted: {
- other.myProperty = 20;
- }
-}
-