QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / qtcreatorbug_1289.qml
1 import QtQuick 2.0
2
3 QtObject {
4     id: root
5     property QtObject object: QtObject {
6         id: nested
7         property QtObject nestedObject
8     }
9
10     Component.onCompleted: {
11         nested.nestedObject = root;
12     }
13 }