Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / idShortcutInvalidates.1.qml
1 import Qt.test 1.0
2 import QtQuick 1.0
3
4 MyQmlObject {
5     objectProperty: if(1) otherObject
6
7     property variant obj
8
9     obj: QtObject {
10         id: otherObject
11     }
12 }
13