| Index: tests/utils/recursive_import_test.dart
|
| diff --git a/tests/utils/recursive_import_test.dart b/tests/utils/recursive_import_test.dart
|
| index 2c5cb00536439fa86f9f3137ab290909da68a7b9..64bfee0f9be433bea28395638e893c99bf697137 100644
|
| --- a/tests/utils/recursive_import_test.dart
|
| +++ b/tests/utils/recursive_import_test.dart
|
| @@ -12,7 +12,7 @@ import '../../sdk/lib/_internal/compiler/compiler.dart';
|
| const CORE_LIB = """
|
| library core;
|
| class Object {
|
| - Object();
|
| + const Object();
|
| operator==(other) {}
|
| }
|
| class bool {}
|
| @@ -35,6 +35,8 @@ setRuntimeTypeInfo(o, i) {}
|
| eqNull(a) {}
|
| eqNullB(a) {}
|
| class JSInvocationMirror {} // Should be in helper.
|
| +class _Proxy { const _Proxy(); }
|
| +const proxy = const _Proxy();
|
| """;
|
|
|
| const INTERCEPTORS_LIB = """
|
|
|