| Index: tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart
|
| diff --git a/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart b/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart
|
| index b80afeb305c69494bf9abcb55cceaf424bc44113..223ce5d1395ada3669b3cf9f3d8b4b10d6d83c12 100644
|
| --- a/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart
|
| +++ b/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart
|
| @@ -186,6 +186,23 @@ main() {
|
| }, expectIdenticalOutput: false),
|
| const Test(const {
|
| 'main.dart': '''
|
| +main() {
|
| + var x = 42;
|
| + int i = 0;
|
| + switch (i) {
|
| + case 0:
|
| + print(x);
|
| + continue label1;
|
| + label1:
|
| + case 1:
|
| + print(x);
|
| + break;
|
| + }
|
| +}
|
| +'''
|
| + }, expectIdenticalOutput: false),
|
| + const Test(const {
|
| + 'main.dart': '''
|
| class A<U,V> {
|
| var a = U;
|
| var b = V;
|
|
|