aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent3.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent3.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent3.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent3.qml
deleted file mode 100644
index a90725016e..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent3.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- id: rectangle // will have JS ownership
- objectName: "rectangle"
- width: 10
- height: 10
- property var rectCanary: 5
-
- Text {
- id: text // will have Eventual-JS ownership
- objectName: "text"
- property var vp: rectangle
- property var textCanary: 10
- }
-}