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