blob: 7e2d2dc2e9f461a322152f6d759dfa5d5c724422 [file] [log] [blame]
// "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 {
}
}