aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/v4/data/doubleBoolJump.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/v4/data/doubleBoolJump.qml')
-rw-r--r--tests/auto/qml/v4/data/doubleBoolJump.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/qml/v4/data/doubleBoolJump.qml b/tests/auto/qml/v4/data/doubleBoolJump.qml
new file mode 100644
index 0000000000..2eea73b573
--- /dev/null
+++ b/tests/auto/qml/v4/data/doubleBoolJump.qml
@@ -0,0 +1,18 @@
+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
+ }
+}
+