blob: 2f881871f6cd1ec3f9f96e942939368154a21192 [file] [log] [blame]
/* Test case for 1GIIBC3: ITPJCORE:WINNT - search for method references - missing matches */
public class CA {
class CB {
void f() {
m();
}
class CC {
void f() {
m();
}
}
}
void m() {
System.out.println("a");
}
}