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

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

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