Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addRuntimeExceptionToThrows/before3.java

10 lines
166 B
Java

// "Add Runtime Exception(s) to Method Signature" "false"
class a {
int f() {
Runnable r = () -> {
throw new RuntimeException()<caret>;
}
}
}