blob: 30cf3914d62a837e01dbdbccd5e3765fd2456d78 [file] [log] [blame]
import java.util.*;
class Test {
public <U> List<U> meth(U p) {
return Collections.singletonList(p);
}
}