aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/deletedEngine.qml
blob: 97acddf5fc202d8318cd78230b5d75d1bfba8a5d (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
}