java highlighting: give up check of @PolymorphicSignature methods (IDEA-251449)

GitOrigin-RevId: cf986ee46e52d6cabfc309776559481d42e6c5ce
This commit is contained in:
Anna Kozlova
2020-09-25 17:53:07 +02:00
committed by intellij-monorepo-bot
parent 3fe319cf9c
commit 636bbda18f
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import java.lang.invoke.MethodHandle;
class MyTest {
private void m(MethodHandle handle) {
I stringSupplier = handle::invokeExact;
}
}
interface I {
String n() throws Throwable;
}