IDEA-66081 (resolve methods in javadoc by signatures)

This commit is contained in:
Roman Shevchenko
2011-03-07 22:00:06 +01:00
parent 20b933ac87
commit c3b799c246
8 changed files with 259 additions and 168 deletions

View File

@@ -0,0 +1,15 @@
package pkg;
/**
* @see #method(pkg.B0.C[])
* @see #method(B0.C[])
* @see #method(B0.C...)
*/
class A0 {
public void method(B0.C[] c) { }
}
class B0 {
class C {
}
}