| Index: pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| diff --git a/pkg/analyzer/test/generated/non_error_resolver_test.dart b/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| index 349cd0ac16e06bfe771b8505e3e908d168c81bf3..6792467bfac3366dff32ba0a2a84eb16f6582ab0 100644
|
| --- a/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| @@ -35,6 +35,24 @@ E e() {
|
| verify([source]);
|
| }
|
|
|
| + void test_class_type_alias_documentationComment() {
|
| + Source source = addSource('''
|
| +/**
|
| + * Documentation
|
| + */
|
| +class C = D with E;
|
| +
|
| +class D {}
|
| +class E {}''');
|
| + computeLibrarySourceErrors(source);
|
| + computeLibrarySourceErrors(source);
|
| + assertNoErrors(source);
|
| + verify([source]);
|
| + CompilationUnit unit = _getResolvedLibraryUnit(source);
|
| + ClassElement classC = unit.element.getType('C');
|
| + expect(classC.documentationComment, isNotNull);
|
| + }
|
| +
|
| void test_ambiguousExport() {
|
| Source source = addSource(r'''
|
| library L;
|
|
|