blob: c19fb184ea58bd4c50507c0f5e952562535e2f1e [file] [log] [blame]
import java.util.List;
class Types {
private List<String> myList;
public String method(List<String> v) {
return v.get(0);
}
public void context() {
String s = method(myList);
}
}