1 /* { dg-do compile } */
3 /* Test attributes in function arguments. */
4 /* Origin: Aldy Hernandez <aldyh@redhat.com>. */
6 #define blah __attribute__((__mode__(QI)))
8 extern void bar(int *);
10 void foo (blah
int abc
)
13 int b
[sizeof(abc
) == 1 ? 1 : -1];