blob: 929994a18ffeb88948c5c4a934f6ffb2338b1481 [file] [log] [blame]
public class LocalVariableReferenced {
private static Object o;
public static Object getInstance(int i) {
if (o == null) {
o<caret> = "" + i;
}
return o;
}
}