summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.1.qml
blob: e3b29aea003dfaa2eacb8412d3487dc6185ef35a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt.test 1.0
import Qt 4.7

MyQmlObject {
    objectProperty: if(1) otherObject

    property variant obj

    obj: QtObject {
        id: otherObject
    }
}