| // RUN: %clang_cc1 -fsyntax-only -verify %s |
| void a, // expected-error{{'void' must be the first and only parameter if specified}} |
| void d, // expected-error{{'void' must be the first and only parameter if specified}} |
| void f) // expected-error{{'void' must be the first and only parameter if specified}} |
| void, // expected-error{{'void' must be the first and only parameter if specified}} |
| void, // expected-error{{'void' must be the first and only parameter if specified}} |
| void, // expected-error{{'void' must be the first and only parameter if specified}} |
| void); // expected-error{{'void' must be the first and only parameter if specified}} |