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

MethodsObject {
    function testFunction2() { return 17; }
    function testFunction3() { return 16; }

    property int test: testFunction()
    property int test2: testFunction2()
    property int test3: testFunction3()
}