blob: ec98ece58852381b40855823f6963464878770b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// { dg-options "-pedantic" }
// { dg-do compile { target { i?86-*-* && ilp32 } } }
// { dg-require-effective-target c++11 }
struct A {
[[gnu::fastcall]]
void f();
};
int main()
{
typedef void (A::*FP)();
FP fp[] = {&A::f}; // { dg-error "cannot convert" }
}
|