Sign in
cobalt
/
cobalt
/
01f3c94b226da58e62558a0b863c39a390e6cd8c
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
PCH
/
cxx-using.h
blob: 572cea28142770335ce7de147e81b92798828238 [
file
] [
log
] [
blame
]
// Header for PCH test cxx-using.cpp
struct
B
{
void
f
(
char
c
);
};
struct
D
:
B
{
using
B
::
f
;
void
f
(
int
);
};