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

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

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