mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
testdata for IDEA-140586
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import java.io.IOException;
|
||||
|
||||
class Test {
|
||||
@FunctionalInterface
|
||||
public interface ConsumerThatThrows<T, E extends Throwable> {
|
||||
void accept(T var1) throws E;
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws IOException
|
||||
{
|
||||
acceptsConsumerThatThrows(Test::methodThatThrows, "hello");
|
||||
}
|
||||
|
||||
public static <T, E extends Exception> void acceptsConsumerThatThrows(ConsumerThatThrows<T, E> consumer, T t) throws E
|
||||
{
|
||||
consumer.accept(t);
|
||||
}
|
||||
|
||||
public static void methodThatThrows(String s) throws IOException {}
|
||||
}
|
||||
Reference in New Issue
Block a user