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