QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / methods.5.qml
1 import QtQuick 2.0
2
3 Item {
4     property alias blah: item.x
5     Item { id: item }
6
7     function testFunction() { return 9; }
8     property int test: testFunction();
9 }