| 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 a7a9ce7d8c92e22936768858bbca7014bad3a68f..fd4487f6e961b8856a82a6163730f8c8e4fe13a0 100644
|
| --- a/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| @@ -1709,6 +1709,19 @@ Map _globalMap = {
|
| verify([source]);
|
| }
|
|
|
| + void test_duplicatePart() {
|
| + addNamedSource('/part1.dart', 'part of lib;');
|
| + addNamedSource('/part2.dart', 'part of lib;');
|
| + Source source = addSource(r'''
|
| +library lib;
|
| +part 'part1.dart';
|
| +part 'part2.dart';
|
| +''');
|
| + computeLibrarySourceErrors(source);
|
| + assertNoErrors(source);
|
| + verify([source]);
|
| + }
|
| +
|
| void test_dynamicIdentifier() {
|
| Source source = addSource(r'''
|
| main() {
|
|
|