mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
introduce parameter, delegate: process supermethod accordingly (IDEA-57162)
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
abstract class A {
|
||||
abstract void xxx();
|
||||
}
|
||||
|
||||
class B implements A {
|
||||
public void xxx() {
|
||||
System.out.println(<selection>239</selection>);
|
||||
}
|
||||
|
||||
static {
|
||||
A a = new B();
|
||||
a.xxx();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user