blob: 6f812c0a458a4b5f97f075d5f2788ce823cfd79d [file] [log] [blame]
// "Remove explicit type arguments" "true"
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
class Box<T>
{
public T getValue()
{
return null;
}
void f(Stream<Box<String>> stream) {
List<String> l3 = stream
.map(Box<Stri<caret>ng>::getValue)
.collect(Collectors.toList());
}
}