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