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.

ExprEdit4.java 236B

12345678910111213141516
  1. package test1;
  2. public class ExprEdit4 {
  3. int value;
  4. void f() { value = 3; }
  5. public ExprEdit4() { value = 0; }
  6. public int k1() {
  7. ExprEdit4 e = null;
  8. e.f();
  9. e = null;
  10. return new ExprEdit4() == null ? 1 : 0;
  11. }
  12. }