JavaCompilerCore/resources/bytecode/javFiles/Bug300.jav
Daniel Holle 786e0a7a23
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 2m35s
Fix #300 and also call private methods correctly
2024-03-21 11:49:16 +01:00

17 lines
230 B
Java

import java.lang.String;
class Base {
toString() {
return "Base";
}
}
public class Bug300 extends Base {
public m() {
return super.toString();
}
toString() {
return "Derived";
}
}