1 struct S {
2   int i;
3 };
4 
iptr()5 int S::*iptr() {
6   return &S::i;
7 }
8