blob: d28748b9f367c3655d26fcdcd73d8230942d208e [file] [log] [blame]
package a5;
/* 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;
}
}