blob: d0c7ad7235d8b511471e77f8a6c4e9c43b74687b [file] [log] [blame]
// { dg-do compile { target { i?86-*-* && ilp32 } } }
struct A {
__attribute__((fastcall))
void f();
};
int main()
{
typedef void (A::*FP)();
FP fp[] = {&A::f}; // { dg-error "cannot convert" }
}