blob: 798a7f2e7f99d78aac594a9f8449305c22f34d23 [file] [log] [blame]
class Test {
Test(String s){
}
void foo() {
Test s = new Test("");
s.bar();
}
void bar() {}
}