| 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 c7eec5d188e64f320a2346bd2efbd59d1853adc2..51b77eda797836a473c0b9c629bb8e00ca19b1a3 100644
|
| --- a/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| +++ b/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| @@ -4462,6 +4462,20 @@ C v = null;
|
| ''');
|
| }
|
|
|
| + test_nameConflict_importWithRelativeUri_exportWithAbsolute() {
|
| + if (resourceProvider.pathContext.separator != '/') {
|
| + return;
|
| + }
|
| +
|
| + addLibrarySource('/a.dart', 'class A {}');
|
| + addLibrarySource('/b.dart', 'export "/a.dart";');
|
| + checkLibrary('''
|
| +import 'a.dart';
|
| +import 'b.dart';
|
| +A v = null;
|
| +''');
|
| + }
|
| +
|
| test_nested_generic_functions_in_generic_class_with_function_typed_params() {
|
| checkLibrary('''
|
| class C<T, U> {
|
|
|