Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / constantsOverrideBindings.2.qml
1 import Qt.test 1.0
2
3 MyQmlObject {
4     property alias c1: myConstants.c1
5     property alias c2: myConstants.c2
6
7     objectProperty: ConstantsOverrideBindings { 
8         id: myConstants
9         c2: 10 
10     }
11 }