mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
17 lines
211 B
Plaintext
17 lines
211 B
Plaintext
class Foreign {
|
|
/**
|
|
* @param test1
|
|
*/
|
|
void foo(Test1 test1) {
|
|
test1.bar();
|
|
}
|
|
}
|
|
|
|
public abstract class Test1 {
|
|
|
|
/**
|
|
* @see Foreign#foo(Test1)
|
|
*/
|
|
void bar () {
|
|
}
|
|
} |