mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
14 lines
173 B
Java
14 lines
173 B
Java
// "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 {
|
|
}
|
|
}
|
|
|