bool_reference 147 B

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