| Index: pkg/analyzer/test/generated/parser_test.dart
|
| diff --git a/pkg/analyzer/test/generated/parser_test.dart b/pkg/analyzer/test/generated/parser_test.dart
|
| index 7ee8a2c21c7a2b2fa633f0944227f5601461722b..390095bf103c785693908ac6b17d5cb122b5ccd6 100644
|
| --- a/pkg/analyzer/test/generated/parser_test.dart
|
| +++ b/pkg/analyzer/test/generated/parser_test.dart
|
| @@ -2708,6 +2708,12 @@ class IncrementalParserTest extends EngineTestCase {
|
| _assertParse("f() => a", "", " ", " + b;");
|
| }
|
|
|
| + void test_rename_class_withConstructor() {
|
| + // "class C { C() {} }"
|
| + // "class D { C() {} }"
|
| + _assertParse('class ', 'C', 'D', ' { C() {} }');
|
| + }
|
| +
|
| void test_replace_field_type_with_void() {
|
| // Note: this produces an error, but we still need the parser to produce a
|
| // consistent parse tree for it.
|
|
|