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