Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addToThrows/afterLambdaInternal.java

13 lines
180 B
Java

// "Add Exception to Method Signature" "true"
class C {
interface I {
void a() throws InterruptedException;
}
{
I i = () -> {
Thread.sleep(2000);
};
}
}