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

Item {
    property alias blah: item.x
    Item { id: item }

    function testFunction() { return 9; }
    property int test: testFunction();
}