diff options
Diffstat (limited to 'tests/auto/declarative/qmlecmascript/data/methods.4.qml')
-rw-r--r-- | tests/auto/declarative/qmlecmascript/data/methods.4.qml | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/declarative/qmlecmascript/data/methods.4.qml b/tests/auto/declarative/qmlecmascript/data/methods.4.qml deleted file mode 100644 index aac711c..0000000 --- a/tests/auto/declarative/qmlecmascript/data/methods.4.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt 4.6 - -MethodsObject { - function testFunction2() { return 17; } - function testFunction3() { return 16; } - - property int test: testFunction() - property int test2: testFunction2() - property int test3: testFunction3() -} - |