xref: /llvm-project/clang/test/Parser/sizeof-missing-parens.c (revision 25098736c1b6a716711a64fa45f7f34ccdbef6d1)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 void Foo(int);
4 
5 #define Bar(x) Foo(x)
6 
Baz(void)7 void Baz(void) {
8   Foo(sizeof int); // expected-error {{expected parentheses around type name in sizeof expression}}
9   Bar(sizeof int); // expected-error {{expected parentheses around type name in sizeof expression}}
10 }
11