aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/v4/data/conditionalExpr.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/v4/data/conditionalExpr.qml')
-rw-r--r--tests/auto/qml/v4/data/conditionalExpr.qml8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/auto/qml/v4/data/conditionalExpr.qml b/tests/auto/qml/v4/data/conditionalExpr.qml
deleted file mode 100644
index 704f7c6c5a..0000000000
--- a/tests/auto/qml/v4/data/conditionalExpr.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import Qt.v4 1.0
-
-Result {
- property int n: 2
- property int a: n ? 1 : 0
- property int b: if (n) { 1 } else { 0 }
- result: (a && b) ? 0 : 1
-}