arguments 323 B

123456789101112131415161718192021222324252627282930
  1. void wusi(int c, int d) {
  2. test(c);
  3. test(d);
  4. }
  5. void test(int a, int b) {
  6. test(a);
  7. test(b);
  8. wusi(a, b);
  9. }
  10. void test2(float f) {
  11. test(f);
  12. }
  13. void test2(int b) {
  14. test(b);
  15. }
  16. void main() {
  17. int a = 2;
  18. int b = 3;
  19. test(a, b);
  20. test(a);
  21. test(b);
  22. test2(5.5);
  23. test2(true);
  24. }