Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addRuntimeExceptionToThrows/before3.java
2014-12-06 11:19:41 +03:00

10 lines
166 B
Java

// "Add runtime exception(s) to method signature" "false"
class a {
int f() {
Runnable r = () -> {
throw new RuntimeException()<caret>;
}
}
}