global 248 B

12345678910111213141516171819202122232425
  1. struct A {
  2. int a;
  3. int b;
  4. };
  5. int i = 3;
  6. int a = 23;
  7. A c;
  8. void wusi() {
  9. int b = 0;
  10. test(i);
  11. test(c.a);
  12. test(c.b);
  13. i = 5;
  14. }
  15. void main() {
  16. c.a = 8;
  17. c.b = 10;
  18. int b = 0;
  19. test(i);
  20. wusi();
  21. test(i);
  22. }