(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
attr-parm-1.C
// { 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
};