mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
check super call is still meaninfull after inline method (IDEADEV-39914)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
class A {
|
||||
void foo(){
|
||||
//do smth in A
|
||||
}
|
||||
}
|
||||
|
||||
class B {
|
||||
|
||||
void test(){
|
||||
super.foo();
|
||||
}
|
||||
|
||||
void foo() {
|
||||
//do smth
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user