aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/switchStatement.2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/switchStatement.2.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/switchStatement.2.qml33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/switchStatement.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/switchStatement.2.qml
deleted file mode 100644
index 928d36be1f..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/switchStatement.2.qml
+++ /dev/null
@@ -1,33 +0,0 @@
-import Qt.test 1.0
-
-MyQmlObject {
- value: {
- var value = 0
- switch (stringProperty) {
- case "A":
- value = value + 1
- value = value + 1
- /* should fall through */
- case "S":
- value = value + 1
- value = value + 1
- value = value + 1
- break;
- default:
- value = value + 1
- case "D": { // with curly braces
- value = value + 1
- value = value + 1
- value = value + 1
- break;
- }
- case "F": {
- value = value + 1
- value = value + 1
- value = value + 1
- }
- /* should fall through */
- }
- }
-}
-