recognize @NotNull

http://youtrack.jetbrains.com/issue/KT-129
This commit is contained in:
Stepan Koltsov
2012-02-20 22:37:06 +04:00
parent 2026be5464
commit a1d88a0877
14 changed files with 89 additions and 10 deletions

View File

@@ -0,0 +1,8 @@
package test;
import org.jetbrains.annotations.NotNull;
class NotNullMethod {
@NotNull
public String hi() { return ""; }
}