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