| Index: tests/language_strong/cyclic_type_variable_test.dart
|
| diff --git a/tests/language_strong/cyclic_type_variable_test.dart b/tests/language_strong/cyclic_type_variable_test.dart
|
| index 75f33da231b8b9f36ff2de40d763c7649ba62b98..1edbb36dc7c415383ee8396ce9a3c41b5128ce96 100644
|
| --- a/tests/language_strong/cyclic_type_variable_test.dart
|
| +++ b/tests/language_strong/cyclic_type_variable_test.dart
|
| @@ -9,14 +9,14 @@ class Base<T> {}
|
| class Derived extends Base<Derived> {} // legal
|
|
|
| typedef void funcType<T
|
| -extends T /// 01: static type warning
|
| +extends T //# 01: static type warning
|
| >(T arg);
|
|
|
| class DerivedFunc extends Base<funcType<DerivedFunc>> { }
|
|
|
|
|
| abstract class A<S
|
| -extends S /// 02: static type warning
|
| +extends S //# 02: static type warning
|
| > {
|
| S field;
|
| }
|
| @@ -26,13 +26,13 @@ abstract class B<U extends Base<U>> { // legal
|
| }
|
|
|
| class C1<V
|
| -extends V /// 03: static type warning
|
| +extends V //# 03: static type warning
|
| > {
|
| V field;
|
| }
|
|
|
| class C2<V
|
| -extends V /// 04: static type warning
|
| +extends V //# 04: static type warning
|
| > implements A<V> {
|
| V field;
|
| }
|
|
|