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

QtObject {
    function calculate() {
        return b * 13;
    }

    property int a: calculate()
    property int b: 3
}