moving tests to CE

This commit is contained in:
Dmitry Jemerov
2009-09-25 20:42:06 +04:00
parent 64ecc03e67
commit 39c67da336
138 changed files with 12 additions and 5 deletions
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems>
<problem>
<file>Npe.java</file>
<line>12</line>
<description>Expression 'o' might evaluate to null</description>
</problem>
<problem>
<file>Npe.java</file>
<line>13</line>
<description>Expression 'o' might evaluate to null</description>
</problem>
</problems>
@@ -0,0 +1,15 @@
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class Npe {
@NotNull Object aField;
@Nullable Object nullable() {
return null;
}
void bar() {
Object o = nullable();
aField = o;
@NotNull Object aLocalVariable = o;
}
}