aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/v4/data/doubleBoolJump.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/v4/data/doubleBoolJump.qml')
-rw-r--r--tests/auto/declarative/v4/data/doubleBoolJump.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/auto/declarative/v4/data/doubleBoolJump.qml b/tests/auto/declarative/v4/data/doubleBoolJump.qml
deleted file mode 100644
index 2eea73b573..0000000000
--- a/tests/auto/declarative/v4/data/doubleBoolJump.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- QtObject {
- property real output: i1.p1 || i2.p2 == "text" ? 0.7 : 0
- }
-
- QtObject {
- id: i2
- property string p2
- }
-
- QtObject {
- id: i1
- property bool p1: false
- }
-}
-