Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / withStatement.1.qml
1 import Qt.test 1.0
2
3 MyQmlObject {
4     property var other: MyQmlObject {
5         intProperty: 123
6
7         function go() {
8             return intProperty;
9         }
10     }
11
12     value: with(other) go()
13 }
14