blob: ae15198d51e569eb46ca086825a4de35bcb0423d [file] [log] [blame]
//selection: 10, 12, 10, 13
//name: list -> arg2
package capture;
import java.util.List;
public class Capture {
List<?> b= null;
void take(List<?> a, List<?> arg2) {
a= arg2;
}
}