1 // { dg-options "-std=c++11 -pedantic" }
2 // { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } }
3 
4 extern int * ([[gnu::stdcall]] *fooPtr)( void); // { dg-error "expected" }
myFn01(void)5 int * [[gnu::stdcall]] myFn01( void) { return 0; }// { dg-warning "ignored" }
6 
7