blob: 72456b587cfa860dedb8838ef60644b3881f88b9 [file] [log] [blame]
class Test {
Test(String s, String s1){super(s);}
void foo() {
Test s = new Test("");
s.bar();
}
void bar() {}
}