aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/propertyVarOwnership.4.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/propertyVarOwnership.4.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/propertyVarOwnership.4.qml25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/propertyVarOwnership.4.qml b/tests/auto/declarative/qdeclarativeecmascript/data/propertyVarOwnership.4.qml
deleted file mode 100644
index 1eba36ce81..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/propertyVarOwnership.4.qml
+++ /dev/null
@@ -1,25 +0,0 @@
-import QtQuick 2.0
-
-Item {
- id: root
-
- property var object
-
- property bool test: false
-
- Component.onCompleted: {
- var c = Qt.createComponent("propertyVarOwnership.4.type1.qml");
- object = c.createObject();
-
- if (object.dummy != 10) return;
- if (object.test != true) return;
-
- object.creatorRef = root;
-
- test = true;
- }
-
- function runTest() {
- object = null;
- }
-}