blob: 8170dbd3e1f275949806dc75e5fb6d10ace2679f [file] [log] [blame]
class Foreign {
/**
* @param test1
*/
void foo(Test1 test1) {
test1.bar();
}
}
public abstract class Test1 {
/**
* @see Foreign#foo(Test1)
*/
void bar () {
}
}