11 lines · c
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3void Foo(int);4 5#define Bar(x) Foo(x)6 7void 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