| 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 db438de5a52544f5d5a5645d70e52a0db5358fff..5fc22dccea9b28567e6c78220346ab01288f5c0e 100644
|
| --- a/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| @@ -3758,6 +3758,15 @@ class A {
|
| verify([source]);
|
| }
|
|
|
| + void test_parameterDefaultDoesNotReferToParameterName() {
|
| + // The final "f" should refer to the toplevel function "f", not to the
|
| + // parameter called "f". See dartbug.com/13179.
|
| + Source source = addSource('void f([void f([x]) = f]) {}');
|
| + resolve(source);
|
| + assertNoErrors(source);
|
| + verify([source]);
|
| + }
|
| +
|
| void test_parameterScope_local() {
|
| // Parameter names shouldn't conflict with the name of the function they
|
| // are enclosed in.
|
|
|