Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / propertySplicing.qml
1 import Qt.test 1.0
2 import QtQuick 2.0
3
4 MyDerivedObject {
5     property bool test: false
6         
7     Component.onCompleted: {
8         test = intProperty()
9     }
10 }