JPS: implement tracking of null annotations

#KT-12933 fixed
    #KT-14266 fixed
This commit is contained in:
Alexey Tsvetkov
2016-08-29 17:43:40 +03:00
committed by Dmitry Jemerov
parent 6d958eb32b
commit 05f278ce20
27 changed files with 367 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import org.jetbrains.annotations.Nullable;
class A {
void f(@Nullable String s) {
System.out.println(s);
}
}