blob: aff730b84390d4097f6c7a82f0a818953e9fcc88 [file] [log] [blame]
// "Surround with 'if (s != null)'" "false"
class A {
void foo(){
String s = null;
for (int i=<caret>s.toString().hashCode(); i==0; ) {}
}
}