blob: f8cda22c01deae470f893a71b41b9f96bdd1eeab [file] [log] [blame]
public class First {
public interface Supplier<T> {}
public interface Callable<T> {}
public static <T> void method(Supplier<T> supplier, Callable<? super T> callable) {}
}