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

MyQmlObject {
    objectProperty: if(1) otherObject

    property variant obj

    obj: QtObject {
        id: otherObject
    }
}