Skip to content

Commit 8f22acf

Browse files
Update expected errors after recent CFE udpates in Enhanced Enums (#1336)
1 parent 6604c07 commit 8f22acf

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

LanguageFeatures/Enhanced-Enum/implementing_enum_A03_t04.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
enum E1 {
3030
// ^^
3131
// [analyzer] unspecified
32-
// [cfe] unspecified
3332
e1,
3433
e2;
3534

@@ -40,8 +39,6 @@ enum E1 {
4039
}
4140

4241
enum E2 {
43-
// ^^
44-
// [cfe] unspecified
4542
e1(42),
4643
e2(0);
4744

LanguageFeatures/Enhanced-Enum/semantics_A11_t01.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ enum E1 {
2929
void foo();
3030
// ^^^
3131
// [analyzer] unspecified
32+
// [cfe] unspecified
3233
}
3334

3435
enum E2<T> {
@@ -45,6 +46,7 @@ enum E2<T> {
4546
void foo();
4647
// ^^^
4748
// [analyzer] unspecified
49+
// [cfe] unspecified
4850
}
4951

5052
main() {

0 commit comments

Comments
 (0)