aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/codemodel/check/case-fallthrough.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/codemodel/check/case-fallthrough.qml')
-rw-r--r--tests/auto/qml/codemodel/check/case-fallthrough.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qml/codemodel/check/case-fallthrough.qml b/tests/auto/qml/codemodel/check/case-fallthrough.qml
index a1851da564..186d58df4b 100644
--- a/tests/auto/qml/codemodel/check/case-fallthrough.qml
+++ b/tests/auto/qml/codemodel/check/case-fallthrough.qml
@@ -2,7 +2,7 @@ import QtQuick 2.0
Item {
x: {
- switch (a) {
+ switch (a) { // 108 17 17
case 1:
case 2:
x = 1
@@ -21,7 +21,7 @@ Item {
break
case 9:
}
- switch (a) {
+ switch (a) { // 108 17 17
case 1:
case 2: // 20 9 12
x = 1