blob: cd911752ac8e6f540a7481202e8cc5f53a280fc2 [file] [log] [blame]
public class Extracted {
private final Test test;
String myT;
public Extracted(Test test) {
this.test = test;
this.myT = test.foo();
}
void bar() {
System.out.println(myT);
}
}