mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
203 B
Java
18 lines
203 B
Java
class Foreign {
|
|
}
|
|
|
|
public abstract class Test1 {
|
|
|
|
/**
|
|
* @param f
|
|
*/
|
|
void <caret>foo (Foreign f) {
|
|
bar();
|
|
}
|
|
|
|
/**
|
|
* @see #foo(Foreign)
|
|
*/
|
|
void bar () {
|
|
}
|
|
} |