blob: dbefdc63469b0fc15ed6def39ecfa89a7781fe08 [file] [log] [blame]
package p;
public class A{
public static A f;
public void n(){
f= null;
this.f= null;
A.f= null;
p.A.f= null;
f.f= null;
}
}