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