blob: 91f2f777e01888e5a641e6c460cf16ae460ccfa2 [file] [log] [blame]
class Test {
Test(String s){
super(s);
System.out.println("hello");
}
void foo() {
Test s = new Test(null);
s.bar();
}
void bar() {}
}