summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/deletedEngine.qml
blob: e4c19d2f13459eb855c086121466a758b1e86157 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.0

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

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