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