inline superclass: process default/implicit constructors (IDEADEV-41326)

This commit is contained in:
anna
2009-11-12 16:29:05 +03:00
parent d9831b2c91
commit 11373491d2
12 changed files with 148 additions and 9 deletions

View File

@@ -2,8 +2,10 @@ class Test {
String s;
Test(String s){
super(s);
System.out.println("hello");
if (s != null) {
this.s = s;
}
System.out.println("hello");
}
void foo() {