Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/javadocDeclaration/ThrowsInheritDoc.java
Alexandr Suhinin 66dc4f4509 [javadoc inspection]: test "JavadocDeclaration" inspection (copy from JavadocDeclarationHighlightingTest)
GitOrigin-RevId: 19cf2b25316068a0f5036e9f422c9e8147084ce4
2022-02-07 09:48:45 +00:00

16 lines
335 B
Java

interface Base {
/**
* @throws java.lang.RuntimeException if something wrong happens
*/
void test();
}
class Test implements Base {
/**
* @throws java.lang.RuntimeException {@inheritDoc}
* <warning descr="'@throws' tag description is missing">@throws</warning> java.lang.Error
*/
public void test() {
}
}