blob: 7cd1d28d427fb1e3fc835f3847e03c3acb044fa7 [file] [log] [blame]
/* Test case for bug 6538 searchDeclarationsOf* incorrect
class A{
int i(){
return 0;
}
}
class B {
int f;
void i(){
y();
Object l= new byte[f];
}
private void y(){
}
}
class C extends A{
public int i(){
return 0;
}
}
*/