aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent.qml23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent.qml b/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent.qml
deleted file mode 100644
index 36c025401f..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent.qml
+++ /dev/null
@@ -1,23 +0,0 @@
-import QtQuick 2.0
-import Qt.test 1.0
-
-Item {
- id: first
- property var vp: Item {
- id: second
- property var vp: Item {
- id: third
- property var vp: Item {
- id: fourth
- property var vp: Item {
- id: fifth
- property int fifthCanary: 5
- property var circ: third.vp
- property MyScarceResourceObject srp;
- srp: MyScarceResourceObject { id: scarceResourceProvider }
- property variant memoryHog: scarceResourceProvider.newScarceResource()
- }
- }
- }
- }
-}