| Index: test/dart_codegen/expect/core/comparable.dart
|
| diff --git a/test/dart_codegen/expect/core/comparable.dart b/test/dart_codegen/expect/core/comparable.dart
|
| index 10717ac39f0c7bbafec6e7317c721f79325e4941..3e9980e89e7f2abb30eb03e63bc458817f639b29 100644
|
| --- a/test/dart_codegen/expect/core/comparable.dart
|
| +++ b/test/dart_codegen/expect/core/comparable.dart
|
| @@ -1,7 +1,5 @@
|
| part of dart.core;
|
| -
|
| -typedef int Comparator<T>(T a, T b);
|
| -abstract class Comparable<T> {
|
| - int compareTo(T other);
|
| - static int compare(Comparable a, Comparable b) => a.compareTo(b);
|
| + typedef int Comparator<T>(T a, T b);
|
| + abstract class Comparable<T> {int compareTo(T other);
|
| + static int compare(Comparable a, Comparable b) => a.compareTo(b);
|
| }
|
|
|