summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/deletedEngine.qml
blob: 4de405dcce22dd37ce9e3efa7fa3f3383d82acde (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
}