aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/dependenciesWithFunctions.qml
blob: 57d3ae2f147796997850c3dd3c1ca22fcec69715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQml 2.0
QtObject {
    property int value: 100
    property bool success: {
        unrelatedFunction();
        return value == 42;
    }
    property int unrelatedValue: 100
    function unrelatedFunction() {
        return unrelatedValue;
    }
}