Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
012614ecf78442368ec82ee30efb3bc047b413e6
/
.
/
test
/
PCH
/
cxx-using.h
blob: 572cea28142770335ce7de147e81b92798828238 [
file
] [
log
] [
blame
]
Argyrios Kyrtzidis
b01a552
2010-06-20 14:40:59 +0000
[
diff
] [
blame
]
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
};