Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / shutdownErrors.qml
1 import QtQuick 2.0
2
3 Item {
4     property int test: myObject.object.a
5
6     Item {
7         id: myObject
8         property QtObject object;
9         object: QtObject {
10             property int a: 10
11         }
12     }
13 }