Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / propertyQJSValue.8.qml
1 import QtQuick 2.0
2 import Qt.test 1.0
3
4 MyQmlObject {
5     property bool test: false
6
7     qjsvalue: 6
8
9     Component.onCompleted: {
10         if (qjsvalue != 6) return;
11         test = true;
12     }
13 }