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, 0 insertions, 14 deletions
diff --git a/tests/auto/qml/v4/data/nestedLogicalAnd.qml b/tests/auto/qml/v4/data/nestedLogicalAnd.qml
deleted file mode 100644
index 1358fcea64..0000000000
--- a/tests/auto/qml/v4/data/nestedLogicalAnd.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-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
-}