[java] @see tag ref verification (IDEA-97635)

This commit is contained in:
Roman Shevchenko
2016-03-09 13:28:11 +01:00
parent 4176064485
commit 77a63a0eea
4 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
/**
* <warning descr="Class or method reference is expected after @see tag">@see</warning>
* @see <warning descr="Class or method reference is expected after @see tag">{@link C}</warning> clarification
*
* @see C a correct one
* @see C#f
*/
class C {
int f;
}