OSDN Git Service

* typeck2.c (abstract_virtual_errors): Reword diagnostics, make them
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / incomplete.C
1 // { dg-do assemble  }
2
3 // gcc represents non-ellipsis parmlists by terminating them with
4 // a void parm. We need to distinguish between a parmlist of (void), and
5 // some ill-formed ones.
6
7 struct S; // { dg-error "" } forward ref
8
9 void f(S);            // ok
10 void f(S s) {}        // { dg-error "" } incomplete type
11 void j (int){}        // ok
12 void k (){}           // ok
13 void q (void){}       // ok
14 void t (void t);      // { dg-error "" } incomplete
15 void r (void, ...);   // { dg-error "" } incomplete
16 void s (void const);  // { dg-error "" } incomplete