llvm-project
10 строк · 303.0 Байт
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3void Foo(int);
4
5#define Bar(x) Foo(x)
6
7void Baz(void) {
8Foo(sizeof int); // expected-error {{expected parentheses around type name in sizeof expression}}
9Bar(sizeof int); // expected-error {{expected parentheses around type name in sizeof expression}}
10}
11