Clang Project

clang_source_code/test/Import/cxx-member-pointers/Inputs/S.cpp
1struct S {
2  int i;
3};
4
5int S::*iptr() {
6  return &S::i;
7}
8