blob: 5d210e73d337684418a2e9a9e68a046f3e079299 [file] [log] [blame]
import java.util.List;
class Types {
private List<String> myList;
public void method(List v) {
v.clear();
}
public void context() {
method(myList);
}
}