/* test overwritten main method */ class OtherMain { void main () { int a; } } class Main extends OtherMain { void main () { int b; } }