blob: a7857b1beb2fedd73da8e017ea23a8e6cb128cf6 [file] [log] [blame]
public class Extracted<R> {
private final Test<R> test;
public R myT;
public Extracted(Test<R> test) {
this.test = test;
}
void bar() {
test.foo(myT);
}
}