Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/methodThrows/after2.java
2010-06-25 12:46:40 +04:00

14 lines
189 B
Java

// "Add 'java.io.IOException' to 'a.f' throws list" "true"
import java.io.*;
class a {
void f() throws IOException {
}
}
class b extends a {
void f() throws <caret>IOException {
}
}