aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml
blob: 34c50d6647fbe2feae56942287ceb2adf52d1feb (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.0

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

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