re PR c++/67184 (Missed optimization with C++11 final specifier)
[official-gcc.git] / gcc / testsuite / g++.dg / other / error29.C
bloba46405875e7f30525a18a6dcce11fa1d45465974
1 // PR c++/35334
2 // { dg-do compile }
3 // { dg-bogus "not supported by" "" { target *-*-* } 0 }
5 __complex__ unsigned int i;
6 int j;
7 char k;
8 __complex__ double l;
9 double m;
10 float n;
12 void
13 foo ()
15   ((__complex__ int)i)();               // { dg-error "cannot be used as a function" }
16   ((__complex__ int)j)();               // { dg-error "cannot be used as a function" }
17   ((__complex__ int)k)();               // { dg-error "cannot be used as a function" }
18   ((__complex__ long double)l)();       // { dg-error "cannot be used as a function" }
19   ((__complex__ long double)m)();       // { dg-error "cannot be used as a function" }
20   ((__complex__ long double)n)();       // { dg-error "cannot be used as a function" }