check super call is still meaninfull after inline method (IDEADEV-39914)

This commit is contained in:
anna
2009-10-20 17:39:08 +04:00
parent c4406cca52
commit a4a26e7c4f
4 changed files with 79 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
class A {
void foo(){
//do smth in A
}
}
class B {
void test(){
super.foo();
}
void foo() {
//do smth
}
}