2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / attrib8.C
blob26021c56ca4b0e976af18ddf3b16703e07f489cc
1 // PR 8656
2 // { dg-do compile { target i?86-*-* } }
4 extern int * (__attribute__((stdcall)) *fooPtr)( void);
5 int * __attribute__((stdcall)) myFn01( void) { return 0; }
7 void snafu( void)
9   fooPtr = myFn01;