| Index: tests/language_strong/malbounded_redirecting_factory_test.dart
|
| diff --git a/tests/language_strong/malbounded_redirecting_factory_test.dart b/tests/language_strong/malbounded_redirecting_factory_test.dart
|
| index 5b1ebf60bc5746cc299583d095aff0bc57745bbc..0ce6d0ac8562323a71f3e945fd00994dbe5f543d 100644
|
| --- a/tests/language_strong/malbounded_redirecting_factory_test.dart
|
| +++ b/tests/language_strong/malbounded_redirecting_factory_test.dart
|
| @@ -4,22 +4,19 @@
|
|
|
| import 'package:expect/expect.dart';
|
|
|
| -class A<
|
| - Ta
|
| +class A<Ta
|
| extends num // //# 02: continued
|
| - > implements B<Ta>, C<Ta> {}
|
| + > implements B<Ta>, C<Ta> { }
|
|
|
| -class B<
|
| - Tb
|
| +class B<Tb
|
| extends num // //# 03: continued
|
| - > {
|
| + > {
|
| factory B() = A<Tb>;
|
| }
|
|
|
| -class C<
|
| - Tc
|
| +class C<Tc
|
| extends num // //# 04: continued
|
| - > {
|
| + > {
|
| factory C() = B<Tc>;
|
| }
|
|
|
|
|