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