blob: 7f0bc9409e8fcf081590f043251558769f497c26 [file] [log] [blame]
// { dg-do assemble }
// gcc represents non-ellipsis parmlists by terminating them with
// a void parm. We need to distinguish between a parmlist of (void), and
// some ill-formed ones.
struct S; // { dg-message "" } forward ref
void f(S); // ok
void f(S s) {} // { dg-error "" } incomplete type
void j (int){} // ok
void k (){} // ok
void q (void){} // ok
void t (void t); // { dg-error "" } incomplete
void r (void, ...); // { dg-error "" } incomplete
void s (void const); // { dg-error "" } incomplete