Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
b2b2c329476d45a5c5dd51be0391449ada1c7ad5
/
.
/
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
);
};