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

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

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