struct A { int w; }; void main() { A a; a.w = 3; test(a.w); a.w++; test(a.w); ++a.w; test(a.w); }