mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
37 lines
472 B
Java
37 lines
472 B
Java
class Base
|
|
{
|
|
int someNum()
|
|
{
|
|
System.out.println ("ok");
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
public class PR242 extends Base
|
|
{
|
|
public static void main(String args[])
|
|
{
|
|
new PR242();
|
|
}
|
|
|
|
PR242()
|
|
{
|
|
new Inner().a();
|
|
}
|
|
|
|
class Inner
|
|
{
|
|
public int dummy()
|
|
{
|
|
System.out.println ("wrong method called!!");
|
|
return -1;
|
|
}
|
|
|
|
public void a()
|
|
{
|
|
System.out.println ("...");
|
|
System.out.println (someNum());
|
|
}
|
|
}
|
|
}
|