mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 23:46:49 +07:00
GitOrigin-RevId: 387a7fe6e41da1f967b05dfa7da246e70e02b30f
17 lines
212 B
Plaintext
17 lines
212 B
Plaintext
class Foreign {
|
|
/**
|
|
* @param test1
|
|
*/
|
|
void foo (Test1 test1) {
|
|
test1.bar();
|
|
}
|
|
}
|
|
|
|
public abstract class Test1 {
|
|
|
|
/**
|
|
* @see Foreign#foo(Test1)
|
|
*/
|
|
void bar () {
|
|
}
|
|
} |