Sign in
cobalt
/
cobalt
/
cde3442a440acd4a8f18a44377f1db36e384db7e
/
.
/
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
);
};