Sign in
fuchsia
/
third_party
/
swift-clang
/
4ff54b6814458813f7ae9cb1740048c39f661719
/
.
/
test
/
ASTMerge
/
Inputs
/
class1.cpp
blob: 0cd6565f1a92857622cf6df6adfa9a70a323eedd [
file
] [
log
] [
blame
]
struct
A
{
int
x
;
};
struct
B
:
A
{
float
y
;
float
foo
();
};
struct
C
{
C
(
int
i
=
10
);
C
(
const
C
&);
C
&
operator
=(
C
&);
~
C
();
};
enum
E
{
b
=
1
};