diff --git a/LanguageFeatures/Patterns/switch_expression_A04_t01.dart b/LanguageFeatures/Patterns/switch_expression_A04_t01.dart index 6a54277e36..1603bd2ba8 100644 --- a/LanguageFeatures/Patterns/switch_expression_A04_t01.dart +++ b/LanguageFeatures/Patterns/switch_expression_A04_t01.dart @@ -32,10 +32,10 @@ void test(String s) { switch (s) { -//^^^^^^ + "one" => 1, +// ^^^^^ // [analyzer] unspecified // [cfe] unspecified - "one" => 1, _ => 0 }; } @@ -43,10 +43,10 @@ void test(String s) { main() { String s = ""; switch (s) { -//^^^^^^ + "one" => 1, +// ^^^^^ // [analyzer] unspecified // [cfe] unspecified - "one" => 1, _ => 0 }; }