Files
kotlin/compiler/testData/loadJava/notNull/NotNullMethod.java

9 lines
140 B
Java

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