14 lines
146 B
Text
14 lines
146 B
Text
|
/* test overwritten main method */
|
||
|
|
||
|
|
||
|
class OtherMain {
|
||
|
void main () {
|
||
|
int a;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class Main extends OtherMain {
|
||
|
void main () {
|
||
|
int b;
|
||
|
}
|
||
|
}
|