+2019-11-18 Joseph Myers <joseph@codesourcery.com>
+
+ * gcc.dg/c11-attr-syntax-1.c, gcc.dg/c11-attr-syntax-2.c,
+ gcc.dg/c11-attr-syntax-3.c, gcc.dg/c2x-attr-syntax-4.c: New tests.
+ * gcc.dg/c2x-attr-deprecated-1.c: Also test struct [[deprecated]].
+ * gcc.dg/c2x-attr-fallthrough-1.c: Also test [[__fallthrough__]].
+
2019-11-18 Marek Polacek <polacek@redhat.com>
PR c++/91962 - ICE with reference binding and qualification conversion.
--- /dev/null
+/* Test C2x attribute syntax: rejected in C11. */
+/* { dg-do compile } */
+/* { dg-options "-std=c11 -pedantic-errors" } */
+
+[[]]; /* { dg-error "attributes before C2X" } */
+
+void f [[]] (void); /* { dg-error "attributes before C2X" } */
--- /dev/null
+/* Test C2x attribute syntax: rejected in C11. */
+/* { dg-do compile } */
+/* { dg-options "-std=c11 -pedantic" } */
+
+[[]]; /* { dg-warning "attributes before C2X" } */
+
+void f [[]] (void); /* { dg-warning "attributes before C2X" } */
--- /dev/null
+/* Test C2x attribute syntax: rejected in C11, but warning disabled
+ with -Wno-c11-c2x-compat. */
+/* { dg-do compile } */
+/* { dg-options "-std=c11 -pedantic -Wno-c11-c2x-compat" } */
+
+[[]];
+
+void f [[]] (void);
{
return y.b; /* { dg-warning "deprecated" } */
}
+
+struct [[deprecated]] s { int x; };
+
+void
+f12 (void)
+{
+ struct s var; /* { dg-warning "deprecated" } */
+}
case 3:
b += 7;
break;
+ case 4:
+ b = 5;
+ [[__fallthrough__]];
+ case 5:
+ b += 1;
+ break;
}
return b;
}
--- /dev/null
+/* Test C2x attribute syntax: diagnosed with -Wc11-c2x-compat. */
+/* { dg-do compile } */
+/* { dg-options "-std=c2x -pedantic-errors -Wc11-c2x-compat" } */
+
+[[]]; /* { dg-warning "attributes before C2X" } */
+
+void f [[]] (void); /* { dg-warning "attributes before C2X" } */