Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / methods.4.qml
1 import QtQuick 1.0
2
3 MethodsObject {
4     function testFunction2() { return 17; }
5     function testFunction3() { return 16; }
6
7     property int test: testFunction()
8     property int test2: testFunction2()
9     property int test3: testFunction3()
10 }
11