blob: ba8394b94d900ce42292981d546255c96f418792 [file] [log] [blame]
class Inheritor extends Test {
String foo() {
return "";
}
void bar(Test t) {
String s = t.foo();
}
}