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