aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativev4/data/unaryMinus.qml
blob: 3cfa0492c0492dfd95f447452a85205afa3260e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 1.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

    QtObject {
        id: i1
        property real p1: -3.7 
        property int p2: 18
        property real p3: -3.3 
    }
 }