aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features1919/java19/RecordPatternsPreview1ExhaustivenessAspect.aj
blob: 4fad2532711aeecc5f154264740d35fa3e48c5af (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
public aspect RecordPatternsPreview1ExhaustivenessAspect {
  static Pair<I> p2 = new Pair<>(new C(), new D());

  public static void main(String[] args) {
    doSomething(p2);
  }

  public static void doSomething(Pair<I> pair) {
    System.out.println(pair.toString().replaceAll("@[0-9a-f]+", "@000"));
  }

  before(Pair<I> pair) : execution(* doSomething(Pair)) && args(pair) {
    switch (pair) {
      case Pair<I>(I i, C c) -> System.out.println("x");
      case Pair<I>(I i, D d) -> System.out.println("y");
      // TODO: Remove redundant default clause when https://github.com/eclipse-jdt/eclipse.jdt.core/issues/455 has been fixed
      default -> System.out.println("z");
    }

    switch (pair) {
      case Pair<I>(C c, I i) -> System.out.println("a");
      case Pair<I>(D d, C c) -> System.out.println("b");
      case Pair<I>(D d1, D d2) -> System.out.println("c");
      // TODO: remove redundant default clause when https://github.com/eclipse-jdt/eclipse.jdt.core/issues/455 has been fixed
      default -> System.out.println("d");
    }
  }
}

sealed interface I permits C, D { }
final class C implements I { }
final class D implements I { }
record Pair<T>(T x, T y) { }