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