aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/propertyQJSValue.13.qml
blob: 5ece89bd55107f3355e1d022f4ecb38ed25ff364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.0
import Qt.test 1.0

Item {
    property bool test: false
    property var f: b + 12
    property int a: 100
    property int b: testFunction()

    function testFunction() {
        return a * 3;
    }

    Component.onCompleted: {
        if (f != 312) return;
        a = 120;
        if (f != 372) return;
        test = true;
    }
}