| Index: tests/language_strong/internal_library_test.dart
|
| diff --git a/tests/language_strong/internal_library_test.dart b/tests/language_strong/internal_library_test.dart
|
| index 21785f65233d6b6051cf248b6ad742f59a0a8f33..51021c095693ce8f55c0b0ecbad19c0dd410a9a8 100644
|
| --- a/tests/language_strong/internal_library_test.dart
|
| +++ b/tests/language_strong/internal_library_test.dart
|
| @@ -7,12 +7,12 @@
|
| library internal_library_test;
|
|
|
| import 'dart:core'; // This loads 'dart:_foreign_helper' and 'patch:core'.
|
| -import 'dart:_foreign_helper'; /// 01: compile-time error
|
| +import 'dart:_foreign_helper'; //# 01: compile-time error
|
|
|
| // TODO(vsm): Restore once #618 is fixed.
|
| -// part 'dart:_foreign_helper'; /// 02: static type warning
|
| +// part 'dart:_foreign_helper'; //# 02: static type warning
|
|
|
| void main() {
|
| - JS('int', '0'); /// 01: continued
|
| - // JS('int', '0'); /// 02: continued
|
| + JS('int', '0'); //# 01: continued
|
| + // JS('int', '0'); //# 02: continued
|
| }
|
|
|