aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.5.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.5.qml')
-rw-r--r--tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.5.qml27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.5.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.5.qml
deleted file mode 100644
index 7d87ba1782..0000000000
--- a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.5.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import Test 1.0
-import QtQuick 2.0
-
-BindingsSpliceCorrectlyType5 {
- property bool test: false
-
- property int dataProperty2: 8
-
- point: Qt.point(dataProperty2, dataProperty2);
-
- Component.onCompleted: {
- if (point.x != 8) return;
- if (point.y != 8) return;
-
- dataProperty = 9;
-
- if (point.x != 8) return;
- if (point.y != 8) return;
-
- dataProperty2 = 13;
-
- if (point.x != 13) return;
- if (point.y != 13) return;
-
- test = true;
- }
-}