aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/scope.5.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/scope.5.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/scope.5.qml27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scope.5.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scope.5.qml
deleted file mode 100644
index 6dbcbe2a40..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/scope.5.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import QtQuick 2.0
-
-Item {
- property bool test1: false;
- property bool test2: false;
-
- property int a: 10
-
- Item {
- id: nested
- property int a: 11
-
- function mynestedfunction() {
- return a;
- }
- }
-
- function myouterfunction() {
- return a;
- }
-
- Component.onCompleted: {
- test1 = (myouterfunction() == 10);
- test2 = (nested.mynestedfunction() == 11);
- }
-}
-