| Index: tests/compiler/dart2js/minify_many_locals_test.dart
|
| diff --git a/tests/compiler/dart2js/minify_many_locals_test.dart b/tests/compiler/dart2js/minify_many_locals_test.dart
|
| index e25b249bca165aadd2478d8191bbd72b42d071ec..fbf0cd6c8d2eb291ce33704a611b029d595902bf 100644
|
| --- a/tests/compiler/dart2js/minify_many_locals_test.dart
|
| +++ b/tests/compiler/dart2js/minify_many_locals_test.dart
|
| @@ -23,6 +23,9 @@ main() {
|
| re = const RegExp(r"x,y,z,A,B,C");
|
| Expect.isTrue(re.hasMatch(generated));
|
|
|
| + re = const RegExp(r"G,H,J,K,L,M"); // I is reserved for the isolate.
|
| + Expect.isTrue(re.hasMatch(generated));
|
| +
|
| re = const RegExp(r"Y,Z,a0,a1,a2,a3,a4,a5,a6");
|
| Expect.isTrue(re.hasMatch(generated));
|
|
|
|
|