2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / 20020115-1.c
blob9d4ea5491f5c3d118d68015c59383dea7babf35c
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];
14 bar (b);