| 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 82cb665e7cce3c24e2146d865065fa1c3a317282..db3753cddd31fd19819a810935c1ee551463c70f 100644
|
| --- a/pkg/analyzer/test/generated/parser_test.dart
|
| +++ b/pkg/analyzer/test/generated/parser_test.dart
|
| @@ -779,6 +779,18 @@ class ErrorParserTest extends ParserTestCase {
|
| [ParserErrorCode.ABSTRACT_TYPEDEF]);
|
| }
|
|
|
| + void test_annotationOnEnumConstant_first() {
|
| + ParserTestCase.parseCompilationUnit(
|
| + "enum E { @override C }",
|
| + [ParserErrorCode.ANNOTATION_ON_ENUM_CONSTANT]);
|
| + }
|
| +
|
| + void test_annotationOnEnumConstant_middle() {
|
| + ParserTestCase.parseCompilationUnit(
|
| + "enum E { C, @override D, E }",
|
| + [ParserErrorCode.ANNOTATION_ON_ENUM_CONSTANT]);
|
| + }
|
| +
|
| void test_assertDoesNotTakeAssignment() {
|
| ParserTestCase.parse4(
|
| "parseAssertStatement",
|
|
|