| Index: pkg/analyzer/test/src/summary/linker_test.dart
|
| diff --git a/pkg/analyzer/test/src/summary/linker_test.dart b/pkg/analyzer/test/src/summary/linker_test.dart
|
| index 28bcb565109ba4b8dba97edfaa053435c6e0869e..59edb00bd506dcd541fca62fb97f0e0007eb0e26 100644
|
| --- a/pkg/analyzer/test/src/summary/linker_test.dart
|
| +++ b/pkg/analyzer/test/src/summary/linker_test.dart
|
| @@ -52,6 +52,20 @@ class C<U> extends B<U> {
|
| // No assertions--just make sure it doesn't crash.
|
| }
|
|
|
| + void test_baseClass_genericWithField() {
|
| + createLinker('''
|
| +class B<T> {
|
| + int i = 0;
|
| +}
|
| +class C<T> extends B<T> {
|
| + void f() {}
|
| +}
|
| +''');
|
| + LibraryElementForLink library = linker.getLibrary(linkerInputs.testDartUri);
|
| + library.libraryCycleForLink.ensureLinked();
|
| + // No assertions--just make sure it doesn't crash.
|
| + }
|
| +
|
| void test_baseClass_genericWithGenericMethod() {
|
| createLinker('''
|
| class B<T> {
|
|
|