[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / Parser / cxx-bool.cpp
blob21591d10e9064f536243b33285f412f9a92772d1
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 bool a = true;
5 bool b = false;
7 namespace pr34273 {
8 char c = "clang"[true];
9 char d = true["clang"];