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

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

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