aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/v4/data/unaryMinus.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/v4/data/unaryMinus.qml')
-rw-r--r--tests/auto/declarative/v4/data/unaryMinus.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/auto/declarative/v4/data/unaryMinus.qml b/tests/auto/declarative/v4/data/unaryMinus.qml
deleted file mode 100644
index 410654fc3c..0000000000
--- a/tests/auto/declarative/v4/data/unaryMinus.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 2.0
-
-Item {
- property real test1: -i1.p2
- property int test2: -i1.p2
- property real test3: -i1.p1
- property int test4: -i1.p1
- property real test5: -i1.p3
- property int test6: -i1.p3
- property real test7: -i1.p4
- property int test8: -i1.p4
- property real test9: -i1.p5
- property int test10: -i1.p5
-
- QtObject {
- id: i1
- property real p1: -3.7
- property int p2: 18
- property real p3: -3.3
- property int p4: -7
- property real p5: 4.4
- }
- }
-