| Index: pkg/analyzer/test/src/task/strong/inferred_type_test.dart
|
| diff --git a/pkg/analyzer/test/src/task/strong/inferred_type_test.dart b/pkg/analyzer/test/src/task/strong/inferred_type_test.dart
|
| index 5d5874a5eddcdd7c6a549d56b8a132e36af0a39d..97054d588f17fd25c0cb79d9f635704cc90fffd7 100644
|
| --- a/pkg/analyzer/test/src/task/strong/inferred_type_test.dart
|
| +++ b/pkg/analyzer/test/src/task/strong/inferred_type_test.dart
|
| @@ -4272,7 +4272,7 @@ B v = null;
|
| void test_instantiateToBounds_generic2_noBound() {
|
| var unit = checkFile(r'''
|
| class A<T> {}
|
| -class B<T extends /*error:NOT_INSTANTIATED_BOUND*/A> {}
|
| +class B<T extends A> {}
|
| B v = null;
|
| ''');
|
| expect(unit.topLevelVariables[0].type.toString(), 'B<A<dynamic>>');
|
|
|