blob: ef00c8ed4e53183be916b516a75e682ba31f3da1 [file] [log] [blame]
import org.checkerframework.checker.nullness.qual.Nullable;
public class First {
public static <T extends @Nullable Object> void method(Supplier<T> supplier, Callable<@Nullable ? super T> callable) {}
public interface Supplier<T extends @Nullable Object> {}
public interface Callable<T extends @Nullable Object> {}
}