| Index: pkg/analyzer/test/src/dart/analysis/driver_test.dart
|
| diff --git a/pkg/analyzer/test/src/dart/analysis/driver_test.dart b/pkg/analyzer/test/src/dart/analysis/driver_test.dart
|
| index b1e35f5e900191c27b4783258cbe936bd586a9d0..42655a4cab1643be69173ef439ad7f7ae6c068dc 100644
|
| --- a/pkg/analyzer/test/src/dart/analysis/driver_test.dart
|
| +++ b/pkg/analyzer/test/src/dart/analysis/driver_test.dart
|
| @@ -1005,6 +1005,16 @@ String z = "string";
|
| }
|
| }
|
|
|
| + test_getResult_nameConflict_local() async {
|
| + String content = r'''
|
| +foo([p = V]) {}
|
| +V();
|
| +var V;
|
| +''';
|
| + addTestFile(content);
|
| + await driver.getResult(testFile);
|
| + }
|
| +
|
| test_getResult_noErrors_ifNotAdded() async {
|
| var a = _p('/test/lib/a.dart');
|
| provider.newFile(a, 'A a = null;');
|
|
|