Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
49b32d80416288b6eb8e26f76c40a8e32c20a361
/
.
/
clang
/
test
/
Import
/
cxx-member-pointers
/
Inputs
/
S.cpp
blob: afee60de32685abba78d9898e1da5181f5f26012 [
file
] [
log
] [
blame
]
Raphael Isemann
db33cf2
2018-08-16 18:22:21 +0000
[
diff
] [
blame
]
1
struct
S
{
2
int
i
;
3
};
4
5
int
S
::*
iptr
()
{
6
return
&
S
::
i
;
7
}