moving tests to CE

This commit is contained in:
Dmitry Jemerov
2009-09-25 21:07:37 +04:00
parent 8a4939e31f
commit 19e9b897aa
11 changed files with 6 additions and 0 deletions
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems>
</problems>
@@ -0,0 +1,26 @@
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
class B {
public void f(@NotNull String p){}
@NotNull
public String nn(@Nullable String param) {
return "";
}
}
public class Y extends B {
@NotNull @Nullable String s;
public void f(String p){}
public String nn(@NotNull String param) {
return "";
}
void p(@NotNull @Nullable String p2){}
@Nullable int f;
@NotNull void vf(){}
void t(@NotNull double d){}
}