blob: cdeae0ea6066352b7e268513928ef19913c31450 [file] [log] [blame]
public class Issue354 {
String a;
{
Object o =
new Object() {
@Override
public String toString() {
// :: error: (dereference.of.nullable)
return a.toString();
}
}.toString();
// This is needed to avoid the initialization.fields.uninitialized warning.
// The NPE still occurs
a = "";
}
}