Files
openide/java/java-tests/testData/codeInsight/javadocIG/inheritedDocInThrows1.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 {
}
}