blob: 681a652de1f4e05cd3db7c3ba67f457890f5a24e [file] [log] [blame]
// { dg-do compile { target { { i?86-*-* x86_64-*-* } && { ia32 || lp64 } } } }
// PR 94946
class a {
#ifdef __LP64__
template <typename b> a(b(__attribute__((sysv_abi)) *c)());
template <typename b> a(b(__attribute__((ms_abi)) *c)());
#else
template <typename b> a(b (*)());
template <typename b> a(b(__attribute__((fastcall)) *c)());
#endif
};