OpenGrok
Cross Reference: inheritance-base.cpp
xref
: /
external
/
clang
/
test
/
ASTMerge
/
Inputs
/
inheritance-base.cpp
Home
|
History
|
Annotate
|
Download
|
only in
Inputs
1
class
A
2
{
3
public
:
4
int
x;
5
A(
int
_x
) : x(
_x
) {
6
}
7
};
8