Correct the __has_c_attribute value for maybe_unused

The original proposal was adopted in Apr 2019, but was subsequently
updated by WG14 N2662 in June 2021. We already supported the attribute
on a label and it behaved as expected, but we had not bumped the
feature test value.
diff --git a/clang/test/Preprocessor/has_c_attribute.c b/clang/test/Preprocessor/has_c_attribute.c
index 972bb0f..401daa7 100644
--- a/clang/test/Preprocessor/has_c_attribute.c
+++ b/clang/test/Preprocessor/has_c_attribute.c
@@ -24,7 +24,7 @@
 // CHECK: deprecated: 201904L
 C2x(deprecated)
 
-// CHECK: maybe_unused: 201904L
+// CHECK: maybe_unused: 202106L
 C2x(maybe_unused)
 
 // CHECK: __gnu__::warn_unused_result: 202003L