aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/propertyVar.8.qml
blob: a9f73db4023e4f45f2dc526682b8cbd3c92f54c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Item {
    property bool test: false

    property var literalValue: 6

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