Files

9 lines
188 B
Java

import org.jetbrains.annotations.NotNull;
public class NoCheckForStaticNotNullMethodCall {
@NotNull
static String foo() {return "a";}
@NotNull
Object method() { return foo(); }
}