repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
Parser
/
cxx-bool.cpp
blob
21591d10e9064f536243b33285f412f9a92772d1
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
4
bool
a
=
true
;
5
bool
b
=
false
;
6
7
namespace
pr34273
{
8
char
c
=
"clang"
[
true
];
9
char
d
=
true
[
"clang"
];
10
}
11