blob: 0566fcec540a4f300d651af34b06a2a7e7a20f60 [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
class Test {
interface I {
@NotNull
String get();
}
{
I i = () -> {return <warning descr="'null' is returned by the method declared as @NotNull">null</warning>;};
}
}