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

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

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