int_reference 154 B

12345678910111213141516
  1. struct A {
  2. int t;
  3. };
  4. void test(A t) {
  5. t.t = 8;
  6. t.t += 1;
  7. }
  8. void main() {
  9. A a;
  10. a.t = 5;
  11. test(a.t);
  12. test(a);
  13. test(a.t);
  14. }