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