Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / fallbackBindings.4.qml
1 import QtQuick 2.0
2 import Qt.test.fallbackBindingsDerived 1.0 as ModuleAPI
3
4 Item {
5     property bool success: false
6     property string foo: ModuleAPI.test
7
8     Component.onCompleted: success = (foo == 'hello')
9 }