summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/bug.1.qml
blob: 88740dcc6372275056192672587ccb41c1436c8f (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.7

QtObject {
    property int a: 10
    property bool b: false

    property int test

    test: ((a == 10)?(a + 1):0) + ((b == true)?9:3)
}