8 lines
59 B
C++
8 lines
59 B
C++
|
struct S {
|
||
|
int i;
|
||
|
};
|
||
|
|
||
|
int S::*iptr() {
|
||
|
return &S::i;
|
||
|
}
|