float_reference 146 B

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