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

Item {
    property bool test: false
    property var f
    property int a: 100
    property int b

    function testFunction() {
        return a * 3;
    }

    Component.onCompleted: {
        b = Qt.binding(testFunction);
        f = Qt.binding(function() { return b + 12; });
        if (f != 312) return;
        a = 120;
        if (f != 372) return;
        test = true;
    }
}