aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/v4/data/nestedLogicalAnd.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/v4/data/nestedLogicalAnd.qml')
-rw-r--r--tests/auto/qml/v4/data/nestedLogicalAnd.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/qml/v4/data/nestedLogicalAnd.qml b/tests/auto/qml/v4/data/nestedLogicalAnd.qml
new file mode 100644
index 0000000000..1358fcea64
--- /dev/null
+++ b/tests/auto/qml/v4/data/nestedLogicalAnd.qml
@@ -0,0 +1,14 @@
+import Qt.v4 1.0
+
+Result {
+ property bool val1: false
+ property bool val2: true
+ property bool val3: false
+
+ property bool b1: (true && true && false)
+ property bool b2: (true && (false && true))
+ property bool b3: ((true && true) && true)
+ property bool b4: (val1 && (val2 && val3)) ? true : false
+
+ result: !b1 && !b2 && b3 && !b4
+}