xref
: /
llvm-project
/
clang
/
test
/
Import
/
cxx-member-pointers
/
Inputs
/
S.cpp
(revision db33cf2533d636a6c7920adcccc0e5665fc3077f)
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