blob: 89f229fbd3f0c65fc502460f17b3e57340fb0978 [file] [log] [blame]
public class NestedAssignment {
private static Object o;
public static Object getInstance() {
Object local = null;
if (o == null) {
local = o<caret> = new Object();
}
return o;
}
}