aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test1/ExprEdit4.java
blob: 6f7644711293cb9c68c636b853dcbacca99d5127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package test1;

public class ExprEdit4 {
    int value;

    void f() { value = 3; }

    public ExprEdit4() { value = 0; }

    public int k1() {
	ExprEdit4 e = null;
	e.f();
	e = null;
	return new ExprEdit4() == null ? 1 : 0;
    }
}