1 /* RUN: %clang_cc1 -fsyntax-only %s -verify
9 X
= sizeof(int (void a
)); // expected-error {{argument may not have 'void' type}}
10 X
= sizeof(int (int, void)); // expected-error {{must be the first and only parameter}}
11 X
= sizeof(int (void, ...)); // expected-error {{must be the first and only parameter}}
13 X
= sizeof(int (Void a
)); // expected-error {{argument may not have 'void' type}}
14 X
= sizeof(int (int, Void
)); // expected-error {{must be the first and only parameter}}
15 X
= sizeof(int (Void
, ...)); // expected-error {{must be the first and only parameter}}
18 X
= sizeof(int (void));
19 X
= sizeof(int (Void
));
26 void f(const void); // expected-error {{parameter must not have type qualifiers}}