Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
attrib42.C
blob: 307a5d6b51f7e00535c5434658b52816a5741bf7 [
file
] [
log
] [
blame
]
// { 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" }
}