| Index: test/dart_codegen/expect/collection/hash_map.dart
|
| diff --git a/test/dart_codegen/expect/collection/hash_map.dart b/test/dart_codegen/expect/collection/hash_map.dart
|
| index 53ecbbbaece684a904726945099d5f0dd9434d44..5232e4759161edbf4392c59c787ab7fff9367416 100644
|
| --- a/test/dart_codegen/expect/collection/hash_map.dart
|
| +++ b/test/dart_codegen/expect/collection/hash_map.dart
|
| @@ -1,6 +1,6 @@
|
| part of dart.collection;
|
| - bool _defaultEquals(a, b) => a == b;
|
| - int _defaultHashCode(a) => a.hashCode;
|
| + bool _defaultEquals(Object a, Object b) => a == b;
|
| + int _defaultHashCode(Object a) => a.hashCode;
|
| typedef bool _Equality<K>(K a, K b);
|
| typedef int _Hasher<K>(K object);
|
| abstract class HashMap<K, V> implements Map<K, V> {external factory HashMap({
|
|
|