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