records: support javadoc parameters pointing record components (IDEA-238925)

GitOrigin-RevId: fb76f16282ee0b18eb7b0512fcc9b2e812adb19b
This commit is contained in:
Anna Kozlova
2020-04-29 09:38:26 +02:00
committed by intellij-monorepo-bot
parent fc75a00a48
commit 580a5c69f5
4 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
/**
* @param <error descr="Cannot resolve symbol 'i'">i</error> here description goes
* @param test here test description goes
*/
record Test(int test) {
}