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