Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/methodThrows/beforeUncheckedException.java

8 lines
139 B
Java

// "Remove 'RuntimeException' from 'f' throws list" "false"
import java.io.*;
class a {
void f() throws <caret>RuntimeException {
}
}