| Index: pkg/analyzer/test/generated/parser_test.dart
|
| diff --git a/pkg/analyzer/test/generated/parser_test.dart b/pkg/analyzer/test/generated/parser_test.dart
|
| index 0838d363b8b971feec89e88cd2b077e581124e72..76249a4b8f8e9313a1823c459959baa80b3e4ddf 100644
|
| --- a/pkg/analyzer/test/generated/parser_test.dart
|
| +++ b/pkg/analyzer/test/generated/parser_test.dart
|
| @@ -14786,15 +14786,4 @@ enum E {
|
| var typeAlias = parseFullCompilationUnitMember() as GenericTypeAlias;
|
| expectCommentText(typeAlias.documentationComment, '/// Doc');
|
| }
|
| -
|
| - void test_parseTypeVariable_withDocumentationComment() {
|
| - createParser('''
|
| -class A<
|
| - /// Doc
|
| - B> {}
|
| -''');
|
| - var classDeclaration = parseFullCompilationUnitMember() as ClassDeclaration;
|
| - var typeVariable = classDeclaration.typeParameters.typeParameters[0];
|
| - expectCommentText(typeVariable.documentationComment, '/// Doc');
|
| - }
|
| }
|
|
|