aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/librarymetrics_performance/data/expression.3.qml
blob: e6b5e934eaff05b92bd33a6d2f6ad122f95197b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Item {
    property int a: 5
    property int b: 0

    function someFunc() {
        b += a;
    }

    Component.onCompleted: {
        onAChanged.connect(someFunc)
    }
}