| Index: test/dart_codegen/expect/_internal/symbol.dart
|
| diff --git a/test/dart_codegen/expect/_internal/symbol.dart b/test/dart_codegen/expect/_internal/symbol.dart
|
| index 8ad0119fc9a12914d8bd6054660866a8aab77b74..4883e8c5eda059a464bc6121f21e01a33fc7fb76 100644
|
| --- a/test/dart_codegen/expect/_internal/symbol.dart
|
| +++ b/test/dart_codegen/expect/_internal/symbol.dart
|
| @@ -9,7 +9,7 @@ part of dart._internal;
|
| external const Symbol(String name);
|
| const Symbol.unvalidated(this._name);
|
| Symbol.validated(String name) : this._name = validatePublicSymbol(name);
|
| - bool operator ==(other) => other is Symbol && _name == other._name;
|
| + bool operator ==(Object other) => other is Symbol && _name == other._name;
|
| int get hashCode {
|
| const arbitraryPrime = 664597;
|
| return 0x1fffffff & (arbitraryPrime * _name.hashCode);
|
|
|