aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent2.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent2.qml26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent2.qml
deleted file mode 100644
index 6a49cb9317..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/PropertyVarCircularComponent2.qml
+++ /dev/null
@@ -1,26 +0,0 @@
-import QtQuick 2.0
-import Qt.test 1.0
-
-// Similar to PVCC.qml except that it has another var property
-// It will have a different metaobject.
-Item {
- id: first
- property var anotherVp: 6
- 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 memoryHog2: scarceResourceProvider.newScarceResource()
- }
- }
- }
- }
-}