OpenGrok
Cross Reference: class2.cpp
xref
: /
external
/
clang
/
test
/
ASTMerge
/
Inputs
/
class2.cpp
Home
|
History
|
Annotate
|
Download
|
only in
Inputs
1
struct
A {
2
int
x;
3
};
4
5
struct
B : A {
6
int
y;
7
int
foo
();
8
};
9
10