blob: 056c098fcf7e640542e85f04507ddf572ca42c71 [file] [log] [blame]
// "Add Exception to Method Signature" "true"
class C {
interface I {
void a() throws InterruptedException;
}
{
I i = () -> {
Thread.sleep(2000);
};
}
}