aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/automaticSemicolon.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/automaticSemicolon.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/automaticSemicolon.qml11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/automaticSemicolon.qml b/tests/auto/declarative/qdeclarativeecmascript/data/automaticSemicolon.qml
deleted file mode 100644
index 6db68f2328..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/automaticSemicolon.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-import QtQuick 2.0
-
-QtObject {
- function code() {
- if (1) {
- var a;
- function f1(){}a=1;
- }
- }
-}