Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test for issue 1035 #1074

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,35 @@ public void genericMethodAndVoidTypeWithInference() {
.doTest();
}

@Test
public void issue1035() {
makeHelper()
.addSourceLines(
"Todo.java",
"import org.jspecify.annotations.*;",
"@NullMarked",
"public class Todo {",
" public static <T extends @Nullable Object> T foo(NullableSupplier<T> code) {",
" return code.get();",
" }",
" public static void main(String[] args) {",
" // BUG: Diagnostic contains: returning @Nullable expression from method with @NonNull return type",
" Todo.<Object>foo(() -> null);",
" Todo.<@Nullable Object>foo(() -> null);",
" }",
" // this method should have no errors once we support inference for generic methods",
" public static void requiresInferenceSupport() {",
" // BUG: Diagnostic contains: returning @Nullable expression from method with @NonNull return type",
" Todo.foo(() -> null);",
" }",
" @FunctionalInterface",
" public interface NullableSupplier<T extends @Nullable Object> {",
" T get();",
" }",
"}")
.doTest();
}

private CompilationTestHelper makeHelper() {
return makeTestHelperWithArgs(
Arrays.asList(
Expand Down