aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/propertyQJSValue.8.qml
blob: 73074ca684925472dcb17f84e4884a1115ca6b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0
import Qt.test 1.0

MyQmlObject {
    property bool test: false

    qjsvalue: 6

    Component.onCompleted: {
        if (qjsvalue != 6) return;
        test = true;
    }
}