Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / canAssignNullToQObject.2.qml
1 import Qt.test 1.0
2 import QtQuick 1.0
3
4 MyQmlObject {
5     objectProperty: MyQmlObject {}
6
7     Component.onCompleted: {
8         objectProperty = null;
9     }
10 }
11