aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml
deleted file mode 100644
index f341cce3c9..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-import QtQuick 2.0
-
-Item {
- property int a: 3
- property int binding: myFunction();
- property int binding2: myCompFunction();
-
- function myCompFunction() {
- return a;
- }
-}
-