view gcc/testsuite/g++.dg/ext/attr-parm-1.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

// { 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
};