aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/bug.1.qml
blob: 68dbcfad975e617c5c8dc4ca73dee13a872a9417 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0

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

    property int test

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