Files
kotlin/compiler/testData/readJavaBinaryClass/notNull/NotNullMethod.java
2012-02-20 22:37:06 +04:00

9 lines
133 B
Java

package test;
import org.jetbrains.annotations.NotNull;
class NotNullMethod {
@NotNull
public String hi() { return ""; }
}