aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/attrib42.C
blob: d0c7ad7235d8b511471e77f8a6c4e9c43b74687b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do compile { target { i?86-*-* && ilp32 } } }

struct A {
  __attribute__((fastcall))
  void f();
};

int main()
{
    typedef void (A::*FP)();
    FP fp[] = {&A::f};		// { dg-error "cannot convert" }
}