[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / Parser / sizeof-missing-parens.c
blob8f7f728354b60edb6f2a4328a566abb77d9e2846
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 void Foo(int);
5 #define Bar(x) Foo(x)
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}}