view gcc/testsuite/g++.dg/ext/attr-parm-1.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 2b5abeee2509
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
};