xref
: /
external
/
clang
/
test
/
ASTMerge
/
Inputs
/
inheritance-base.cpp
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
class
A
2
{
3
public
:
4
int
x
;
A(int _x)
5
A
(
int
_x
) :
x
(
_x
) {
6
}
7
};
8