blob: ca58f7b6c4e51c461803f99fc9246bdab0dc8131 [file] [log] [blame]
// "Create Field for Parameter 'p1'" "true"
class Test<T>{
private List<T> p1
void f(List<T> p1){
this.p1 = p1
}
}