Index: tests/compiler/dart2js_extra/switch_test.dart |
diff --git a/tests/compiler/dart2js_extra/switch_test.dart b/tests/compiler/dart2js_extra/switch_test.dart |
index 6c5a79856ce7eee773d12130adb3fee3b77ff090..5b8937a50c1f85ce31b169c2835f488161799393 100644 |
--- a/tests/compiler/dart2js_extra/switch_test.dart |
+++ b/tests/compiler/dart2js_extra/switch_test.dart |
@@ -63,9 +63,9 @@ badswitches(val) { |
// 01 - a label/statement without a following case/default. |
// 02 - a label without a following case/default or statement. |
switch (val) { |
- foo: break; /// 01: compile-time error |
- case 2: /// 02: compile-time error |
- foo: /// 02: continued |
+ foo: break; //# 01: compile-time error |
+ case 2: //# 02: compile-time error |
+ foo: //# 02: continued |
} |
} |