| Index: tests/language_strong/mixin_super_bound_test.dart
|
| diff --git a/tests/language_strong/mixin_super_bound_test.dart b/tests/language_strong/mixin_super_bound_test.dart
|
| index 1e8ef80019080017f4d9f3ee836d697ac3392c8f..fe6a283b4b5a97516cbb59065a466f85b65b80f3 100644
|
| --- a/tests/language_strong/mixin_super_bound_test.dart
|
| +++ b/tests/language_strong/mixin_super_bound_test.dart
|
| @@ -14,13 +14,13 @@ bool inCheckedMode() {
|
| return false;
|
| }
|
|
|
| -class M<U extends V, V> { }
|
| +class M<U extends V, V> {}
|
|
|
| -class N<U, V extends U> { }
|
| +class N<U, V extends U> {}
|
|
|
| -class S<T> { }
|
| +class S<T> {}
|
|
|
| -class MNA<U, V, W> extends S<List<U>> with M<V, U>, N<List<W>, List<W>> { }
|
| +class MNA<U, V, W> extends S<List<U>> with M<V, U>, N<List<W>, List<W>> {}
|
|
|
| class MNA2<U, V, W> = S<List<U>> with M<V, U>, N<List<W>, List<W>>;
|
|
|
| @@ -39,4 +39,3 @@ main() {
|
| new MNA2<int, num, bool>();
|
| }
|
| }
|
| -
|
|
|