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
[AMDGPU] Removed superfluous predicate. NFC.
[llvm-project.git]
/
clang
/
test
/
PCH
/
cxx-using.h
blob
572cea28142770335ce7de147e81b92798828238
1
// Header for PCH test cxx-using.cpp
2
3
4
5
6
7
8
struct
B
{
9
void
f
(
char
c
);
10
};
11
12
struct
D
:
B
13
{
14
using
B
::
f
;
15
void
f
(
int
);
16
};