Files
openide/java/java-tests/testData/inspection/dataFlow/NotNullableParameter2/src/Npe.java
T
2009-09-25 20:42:06 +04:00

10 lines
179 B
Java

import org.jetbrains.annotations.NotNull;
public class Npe {
Object foo(@NotNull Object o) {
if (o == null) {
// Should not get there.
}
return o;
}
}