aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml
deleted file mode 100644
index a3bd7bebf8..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import QtQuick 2.0
-
-MethodsObject {
- function testFunction2() { return 17; }
- function testFunction3() { return 16; }
-
- property int test: testFunction()
- property int test2: testFunction2()
- property int test3: testFunction3()
-}
-