blob: 124af1837c3fc7f595f3e6817098ce64f133b90c [file] [log] [blame]
// "Create Field for Parameter 'p1'" "true"
import java.util.*;
class Test<T>{
private List<T> myP1;
void f(List<T> p1){
myP1 = p1;
}
}