function2 138 B

123456789101112131415
  1. void wusi() {
  2. test(6);
  3. test(7);
  4. }
  5. void test() {
  6. test(4);
  7. test(5);
  8. wusi();
  9. }
  10. void main() {
  11. test();
  12. test();
  13. }