mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
17 lines
162 B
Java
17 lines
162 B
Java
class A{
|
|
public int askdh(){
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
class B extends A{
|
|
public void askdh(){
|
|
return 2;
|
|
}
|
|
}
|
|
|
|
class Super1 extends B{
|
|
{
|
|
super.<caret>askdh();
|
|
}
|
|
} |