mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: eb4befa6b9d6d9b5b8c968fed54abb11c419f578
13 lines
209 B
Java
13 lines
209 B
Java
// "Add exception to method signature" "true-preview"
|
|
import java.io.IOException;
|
|
|
|
class Super {
|
|
Super() throws IOException {
|
|
|
|
}
|
|
}
|
|
class Sub extends Super {
|
|
Sub(int x) throws IOException {
|
|
|
|
}
|
|
} |