| Index: tests/language_strong/f_bounded_quantification5_test.dart
|
| diff --git a/tests/language_strong/f_bounded_quantification5_test.dart b/tests/language_strong/f_bounded_quantification5_test.dart
|
| index b70f0613b51b583c56312f2204fc6ddffacb9019..ddc407f30107b4de5b14cc46a41d44b08df7a792 100644
|
| --- a/tests/language_strong/f_bounded_quantification5_test.dart
|
| +++ b/tests/language_strong/f_bounded_quantification5_test.dart
|
| @@ -6,11 +6,9 @@
|
|
|
| import "package:expect/expect.dart";
|
|
|
| -class A<T extends B<T>> {
|
| -}
|
| +class A<T extends B<T>> {}
|
|
|
| -class B<T extends A<T>> {
|
| -}
|
| +class B<T extends A<T>> {}
|
|
|
| isCheckedMode() {
|
| try {
|
| @@ -35,4 +33,3 @@ main() {
|
| // Type error expected in checked mode only.
|
| Expect.isTrue(got_type_error == isCheckedMode());
|
| }
|
| -
|
|
|