xref
: /
external
/
llvm-project
/
clang
/
test
/
Import
/
cxx-member-pointers
/
Inputs
/
S.cpp
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
struct
S
{
2
int
i
;
3
};
4
iptr()
5
int
S
::*
iptr
() {
6
return
&
S
::
i
;
7
}
8