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