Correct an enhanced-enum test to alow setters named values (#1312)

diff --git a/LanguageFeatures/Enhanced-Enum/grammar_A10_t04.dart b/LanguageFeatures/Enhanced-Enum/grammar_A10_t04.dart
index 12b7db5..36633db 100644
--- a/LanguageFeatures/Enhanced-Enum/grammar_A10_t04.dart
+++ b/LanguageFeatures/Enhanced-Enum/grammar_A10_t04.dart
@@ -10,7 +10,8 @@
 /// declaration.
 ///
 /// @description Check that it's a compile-time error if the enum declaration
-/// contains a static member declaration with the name `values`
+/// contains a static setter with the name `values`, and its argument is not a
+/// supertype of the generated member `values`.
 /// @author sgrekhov@unipro.ru
 /// @issue 48387
 
@@ -25,9 +26,6 @@
   e3;
 
   static void set values(int value) {}
-//                ^^^^^^
-// [analyzer] unspecified
-// [cfe] unspecified
 }
 
 enum E2<T> {
@@ -37,9 +35,6 @@
 
   const E2(Object val);
   static void set values(List<E2> value) {}
-//                ^^^^^^
-// [analyzer] unspecified
-// [cfe] unspecified
 }
 
 main() {