Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/javaDoc/ThrowsInheritDoc.java
Tagir Valeev 2beb7c007b IDEA-236574 False-positive warning appears when inheritDoc is used in @throws tag
GitOrigin-RevId: 0214fca1f2111eb90cef9d4ecda31aeafe68895b
2020-04-02 08:03:47 +00:00

16 lines
334 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() {
}
}