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