[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / Sema / arg-scope.c
blob3de672be9f7d3ed0c58f8243be70573e0eca20ec
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
3 void aa(int b, int x[sizeof b]) {}
5 void foo(int i, int A[i]) {}