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

8 lines
130 B
Java

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