PsiDocMethodOrFieldRef: fixed javadoc resolve for references without param types (IDEA-205390)

This commit is contained in:
Artemiy Sartakov
2019-01-16 12:45:09 +07:00
parent 5527e88971
commit 25643b9c89
3 changed files with 15 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
/**
* {@link #foo}
*/
class Foo {
void foo(Foo p1, Foo p2) {
}
}