Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / canAssignNullToQObject.1.qml
1 import Qt.test 1.0
2
3 MyQmlObject {
4     property bool runTest: false
5
6     property variant a: MyQmlObject {}
7
8     objectProperty: (runTest == false)?a:null
9 }