Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithIf/before2.java
2010-06-25 12:46:40 +04:00

7 lines
153 B
Java

// "Surround with 'if (s != null)'" "true"
class A {
void foo(){
String s = null;
for (int i=0; i!=<caret>s.hashCode();i++){}
}
}