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

8 lines
154 B
Java

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