Sign in
llvm
/
llvm-project
/
clang
/
1fa323a80418c3cd8b28622e21d16d516deab7f1
/
.
/
test
/
ASTMerge
/
Inputs
/
class1.cpp
blob: b600cdb1fcf913e029f99561231876078818df84 [
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
();
};