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

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

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