2022-05-25 11:56:24 +00:00
|
|
|
/**
|
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @summary Verify error reports for erroneous deconstruction patterns are sensible
|
2022-11-17 00:49:53 +00:00
|
|
|
* @compile/fail/ref=DeconstructionPatternErrors.out -XDrawDiagnostics -XDshould-stop.at=FLOW -XDdev DeconstructionPatternErrors.java
|
2022-05-25 11:56:24 +00:00
|
|
|
*/
|
2023-05-22 04:24:06 +00:00
|
|
|
|
2022-05-25 11:56:24 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class DeconstructionPatternErrors {
|
|
|
|
|
2023-01-17 04:43:40 +00:00
|
|
|
public static void meth() throws Throwable {
|
2022-05-25 11:56:24 +00:00
|
|
|
Object p;
|
|
|
|
p = new P(42);
|
|
|
|
if (p instanceof P3(ArrayList<Integer> l));
|
|
|
|
if (p instanceof P4(ArrayList<Integer> l));
|
|
|
|
if (p instanceof P5(int i));
|
|
|
|
if (p instanceof P(String s));
|
|
|
|
if (p instanceof P5(P(var v)));
|
|
|
|
if (p instanceof P2(var v1)); //too few nested patterns
|
|
|
|
if (p instanceof P2(Runnable v1)); //too few nested patterns
|
|
|
|
if (p instanceof P(var v1, var v2)); //too many nested patterns
|
|
|
|
if (p instanceof P(int v1, int v2)); //too many nested patterns
|
|
|
|
if (p instanceof P(int v1, Unresolvable v2)); //too many nested patterns
|
|
|
|
if (p instanceof GenRecord<String>(var v)); //incorrect generic type
|
|
|
|
if (p instanceof P4(GenRecord<String>(var v))); //incorrect generic type
|
|
|
|
if (p instanceof GenRecord<String>(Integer v)); //inconsistency in types
|
2022-12-01 08:02:40 +00:00
|
|
|
if (p instanceof P2(var v, var v)); //duplicated variables
|
|
|
|
if (p instanceof P6(P2(var v1, var v2), P2(var v1, var v2))); //duplicated variables
|
2022-05-25 11:56:24 +00:00
|
|
|
GenRecord<String> r1 = null;
|
|
|
|
if (r1 instanceof GenRecord(String s)) {}
|
|
|
|
switch (r1) {
|
|
|
|
case GenRecord(String s) -> {}
|
|
|
|
}
|
|
|
|
if (r1 instanceof GenRecord<>(String s)) {}
|
|
|
|
switch (r1) {
|
|
|
|
case GenRecord<>(String s) -> {}
|
|
|
|
}
|
2022-12-01 08:02:40 +00:00
|
|
|
boolean b = p instanceof P(int i) p; //introducing a variable for the record pattern
|
2022-05-25 11:56:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public record P(int i) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public record P2(Runnable r1, Runnable r2) {}
|
|
|
|
public record P3(List<String> l) {}
|
|
|
|
public record P4(Object o) {}
|
|
|
|
public record P5(String s) {}
|
|
|
|
public record P6(Object o1, Object o2) {}
|
|
|
|
public record P7(int i) {}
|
|
|
|
public record GenRecord<T>(T s) {}
|
|
|
|
|
|
|
|
}
|