OSDN Git Service

PR c++/10147
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / attrib8.C
1 // PR 8656
2
3 extern int * (__attribute__((stdcall)) *fooPtr)( void);
4 int * __attribute__((stdcall)) myFn01( void) { return 0; }
5
6 void snafu( void)
7 {
8   fooPtr = myFn01;
9 }