| Index: pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| diff --git a/pkg/analyzer/test/src/summary/resynthesize_common.dart b/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| index dbbc1f103e1e7771062cef66a5451ceac68e016d..ff8565665fab4806e32b6936731c5161b46f8729 100644
|
| --- a/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| +++ b/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| @@ -4411,6 +4411,22 @@ C v = null;
|
| ''');
|
| }
|
|
|
| + test_nameConflict_exportedAndLocal_exported() {
|
| + namesThatCannotBeResolved.add('V');
|
| + addLibrarySource('/a.dart', 'class C {}');
|
| + addLibrarySource(
|
| + '/c.dart',
|
| + '''
|
| +export 'a.dart';
|
| +class C {}
|
| +''');
|
| + addLibrarySource('/d.dart', 'export "c.dart";');
|
| + checkLibrary('''
|
| +import 'd.dart';
|
| +C v = null;
|
| +''');
|
| + }
|
| +
|
| test_nameConflict_exportedAndParted() {
|
| namesThatCannotBeResolved.add('V');
|
| addLibrarySource('/a.dart', 'class C {}');
|
|
|