llvm/clang/test/Import/cxx-member-pointers/Inputs/S.cpp

struct S {
  int i;
};

int S::*iptr() {
  return &S::i;
}