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

8 lines
59 B
C++

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