blob: 272b93030e218a63977e79881f4bfb187e505b76 [file] [log] [blame]
class Foo {}
class Bar extends Foo {}
class Base {
Foo method() {}
}
class Sub extends Base {
Foo method() {}
}
main(List<String> args) {}