(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
attrib42.C
// { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } }

struct A {
  __attribute__((fastcall))
  void f();
};

int main()
{
    typedef void (A::*FP)();
    FP fp[] = {&A::f};		// { dg-error "cannot convert" }
}