blob: 7e330a9a5b203aa4306c70d5dec58bc8f09b2636 [file] [log] [blame]
// "Remove 'java.io.IOException' from 'f' throws list" "true"
import java.io.*;
class a {
void f() {
}
}
class b extends a {
void f() throws <caret>IOException {
}
}