Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / extendedObjectPropertyLookup2.qml
1 import Qt.test 1.0
2 import QtQuick 2.0
3
4 QtObject {
5     id: root
6     property MyExtendedObject a;
7     a: MyExtendedObject {
8         id: obj
9         extendedProperty: 42;
10     }
11     function getValue() {
12         return obj.extendedProperty;
13     }
14 }