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
/
SemaCXX
/
Inputs
/
warn-unused-variables.h
blob
56990e0a33de7e8c0fae9a5dcc64819c1c6ad06f
1
// Verify that we don't warn about variables of internal-linkage type in
2
// headers, as the use may be in another TU.
3
namespace
PR15558
{
4
namespace
{
5
class
A
{};
6
}
7
8
class
B
{
9
static
A a
;
10
static
A b
;
11
static const int
x
=
sizeof
(
b
);
12
};
13
}