mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
testdata for IDEA-137694
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
class Test {
|
||||
Test() {
|
||||
foo(<error descr="Unhandled exception: java.lang.Exception">this::fs</error>);
|
||||
foo((s) -> <error descr="Unhandled exception: java.lang.Exception">fs(s)</error>);
|
||||
}
|
||||
|
||||
void foo(I<String, String> iss) {}
|
||||
String fs(String s) throws Exception { throw new Exception(); }
|
||||
}
|
||||
|
||||
interface I<T, R> {
|
||||
R f(T t);
|
||||
}
|
||||
Reference in New Issue
Block a user