blob: 7be020f205652abcc97c28f59dad4ba8123cc024 [file] [log] [blame]
package signature;
import java.util.List;
public class TestWildcardTypes {
void foo() {
List<? extends String> le;
List<? super String> ls;
List<?> l;
}
}