OSDN Git Service

Pizza-lize :-)
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / error29.C
1 // PR c++/35334
2 // { dg-do compile }
3 // { dg-bogus "not supported by" "" { target *-*-* } 0 }
4
5 __complex__ unsigned int i;
6 int j;
7 char k;
8 __complex__ double l;
9 double m;
10 float n;
11
12 void
13 foo ()
14 {
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" }
21 }