mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
moving tests to CE
This commit is contained in:
@@ -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){}
|
||||
}
|
||||
Reference in New Issue
Block a user