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

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

    property int test

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