You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SetBody.java 213B

123456789
  1. package test1;
  2. public class SetBody {
  3. int value;
  4. public int m1(int i, int j) { return i + j; }
  5. public void m2(int k) {}
  6. public void m3(int k) {}
  7. public int run() { m2(3); return m1(3, 4); }
  8. }