xref
: /
external
/
llvm-project
/
clang
/
test
/
Import
/
conversion-decl
/
Inputs
/
F.cpp
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
class
Y
{
2
int
M
;
3
};
4
5
class
X
{
6
int
N
,
M
;
7
8
public
:
9
operator
Y
();
10
};
11