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

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