DRY-232: Inherited member types used as ambnames are not reclassified.
public class Foo extends Bar {
public void test() {
Member.f();
}public static void main(String[] ps) {
new Foo().test();
}
}class Bar {
Submitted on 2 March 2006 at 23:59
public static class Member {
public static void f() {
System.out.println(“f in Member”);
}
}
}
Log in to post comments