bool_reference 188 B

123456789101112131415
  1. void test(bool* t) {
  2. *t = true;
  3. }
  4. void main() {
  5. bool a = true;
  6. bool* b = &a;
  7. a = false;
  8. test(a);
  9. test(*b);
  10. test(&a);
  11. test(b);
  12. test(a);
  13. test(*b);
  14. }