mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 20:54:49 +07:00
GitOrigin-RevId: e953c3be78bcc3e43fcc9777d8573ff3650638e4
10 lines
379 B
Java
10 lines
379 B
Java
import org.jetbrains.annotations.*;
|
|
import java.util.List;
|
|
|
|
public class NullableCallWithPrecalculatedValueAndSpecialField {
|
|
@NotNull List<String> test() {
|
|
return <warning descr="Expression 'getNulableValue()' might evaluate to null but is returned by the method declared as @NotNull">getNulableValue()</warning>;
|
|
}
|
|
|
|
native @Nullable List<String> getNulableValue();
|
|
} |