1 /* { dg-do compile } */
2 /* { dg-options "-fgnu-tm" } */
4 #define W(X) __attribute__((transaction_wrap(X)))
11 void g2(void) W(f2
); /* { dg-error "is not compatible" } */
12 void g3(void) W(i3
); /* { dg-error "is not a function" } */
13 void g4(void) W(f4
); /* { dg-error "undeclared" } */
14 void g5(void) W(1); /* { dg-error "not an identifier" } */
15 void g6(void) W("f1"); /* { dg-error "not an identifier" } */
16 void g7(void) W(f7
); /* { dg-error "is not compatible" } */