summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/newLambda/IDEA119535.java
blob: 9c883308ff1a442b42e110aeb5ea9d332fdc90b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.function.BinaryOperator;
import java.util.function.Function;
import java.util.stream.Collector;

class Stuff {
  public enum Type { A }
  private final int value;
  private final Type type;
  public Stuff(int value, Type type) {
    this.value = value;
    this.type = type;
  }
  public int getValue() {
    return value;
  }
  public Type getType() {
    return type;
  }
}

class FakeErrors {
  {

    Collector<Stuff, ?, Map<Stuff.Type, Optional<Stuff>>> collector =
      groupingBy(Stuff::getType,
                 reducing((d1, d2) -> {
                   boolean b = d1.getValue() > d2.getValue();
                   return d1;
                 }));
  }

  public static <T> Collector<T, ?, Optional<Stuff>> reducing(BinaryOperator<T> op) {
    return null;
  }

  public static <T, K, A, D>
  Collector<T, ?, Map<K, D>> groupingBy(Function<? super T, ? extends K> classifier,
                                        Collector<? super T, A, D> downstream) {
    return null;
  }
}