mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
10 lines
233 B
Java
10 lines
233 B
Java
class Test {
|
|
/**
|
|
* @see Test#test(String, int...)
|
|
* @see Test#<error descr="Cannot resolve symbol 'test(String, long...)'">test</error>(String, long...)
|
|
**/
|
|
void foo() {}
|
|
|
|
void test (String u, int ... i) {}
|
|
}
|