summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/newMethodRef/FromReferenceWithTypeArgs.java
blob: df394913646e443423633c79bd67bc197a5845e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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<String>::getValue)
      .collect(Collectors.toList());
  }
}