mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
IDEA-66081 (resolve methods in javadoc by signatures)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package pkg;
|
||||
|
||||
/**
|
||||
* @see #<error descr="Cannot resolve symbol 'method(B1.C)'">method(B1.C)</error>
|
||||
* @see #<error descr="Cannot resolve symbol 'method(B1.C[][])'">method(B1.C[][])</error>
|
||||
* @see #<error descr="Cannot resolve symbol 'method(B1.C..)'">method(<error descr="Cannot resolve symbol 'B1.C.'">B1.C.</error>.)</error>
|
||||
* @see #<error descr="Cannot resolve symbol 'method(B1.C[)'">method(B1.C[)</error>
|
||||
*/
|
||||
class A1 {
|
||||
public void method(B1.C[] c) { }
|
||||
}
|
||||
|
||||
class B1 {
|
||||
class C {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user