| 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 9ce75c696bb6b69d435bd499ab75ecbe000ed602..de2188572612d8a74513c0d8781b8cabee53ace7 100644
|
| --- a/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| @@ -170,6 +170,14 @@ class N2 {}''');
|
| assertNoErrors(source);
|
| }
|
|
|
| + void test_annotated_partOfDeclaration() {
|
| + Source source = addSource('library L; part "part.dart";');
|
| + addNamedSource('/part.dart', '@deprecated part of L;');
|
| + computeLibrarySourceErrors(source);
|
| + assertNoErrors(source);
|
| + verify([source]);
|
| + }
|
| +
|
| void test_argumentTypeNotAssignable_classWithCall_Function() {
|
| Source source = addSource(r'''
|
| caller(Function callee) {
|
|
|