package subpkg; import superpkg.Top; public class Bottom extends Top { public void m() { System.out.println("Bottom.m() running"); } }