testdata for (IDEA-108664)

This commit is contained in:
Anna Kozlova
2014-12-02 16:43:57 +01:00
parent a815b5d0d2
commit d168336f86
3 changed files with 39 additions and 0 deletions
@@ -0,0 +1,13 @@
class X {
void foo(java.util.List l) {
for (Object o : l) {
<selection>if (o == null) continue;
Object x = bar(o);</selection>
System.out.println(x);
}
}
private String bar(Object o) {
return "";
}
}
@@ -0,0 +1,22 @@
import org.jetbrains.annotations.Nullable;
class X {
void foo(java.util.List l) {
for (Object o : l) {
Object x = newMethod(o);
if (x == null) continue;
System.out.println(x);
}
}
@Nullable
private Object newMethod(Object o) {
if (o == null) return null;
Object x = bar(o);
return x;
}
private String bar(Object o) {
return "";
}
}