mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
19 lines
283 B
Java
19 lines
283 B
Java
import java.io.IOException;
|
|
|
|
class InheritedDocInThrows1 extends A{
|
|
/**
|
|
* @throws java.io.IOException comment
|
|
*/
|
|
void foo() throws IOException {
|
|
super.foo();
|
|
}
|
|
}
|
|
|
|
class A {
|
|
/**
|
|
* @throws java.io.IOException la-la-la
|
|
*/
|
|
void foo() throws IOException {
|
|
}
|
|
}
|