hanchenye-llvm-project/clang/test/Sema/void_arg.c

22 lines
365 B
C
Raw Normal View History

/* RUN: clang -fsyntax-only %s 2>&1 | grep '6 diagnostics'
*/
typedef void Void;
void foo() {
int X;
X = sizeof(int (void a));
X = sizeof(int (int, void));
X = sizeof(int (void, ...));
X = sizeof(int (Void a));
X = sizeof(int (int, Void));
X = sizeof(int (Void, ...));
// Accept these.
X = sizeof(int (void));
X = sizeof(int (Void));
}