testdata for IDEA-140586

This commit is contained in:
Anna Kozlova
2015-05-21 19:14:09 +02:00
parent 04f6f25a5d
commit f18948a3a2
2 changed files with 24 additions and 0 deletions

View File

@@ -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 {}
}