e9bddc18ab
Co-authored-by: Brian Goetz <briangoetz@openjdk.org> Co-authored-by: Jan Lahoda <jlahoda@openjdk.org> Co-authored-by: Aggelos Biboudis <abimpoudis@openjdk.org> Reviewed-by: mcimadamore, vromero
61 lines
2.4 KiB
Java
61 lines
2.4 KiB
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @summary Verify error reports for erroneous deconstruction patterns are sensible
|
|
* @compile/fail/ref=DeconstructionPatternErrors.out --enable-preview -source ${jdk.version} -XDrawDiagnostics -XDshould-stop.at=FLOW -XDdev DeconstructionPatternErrors.java
|
|
*/
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class DeconstructionPatternErrors {
|
|
|
|
public static void main(String... args) throws Throwable {
|
|
Object p;
|
|
p = new P(42);
|
|
if (p instanceof P(_));
|
|
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
|
|
if (p instanceof P2(var v, var v) v); //duplicated variables
|
|
if (p instanceof P6(P2(var v1, var v2) v1, P2(var v1, var v2) v2) v1); //duplicated variables
|
|
if (p instanceof P7(byte b)); //incorrect pattern type
|
|
if (p instanceof P7(long l)); //incorrect pattern type
|
|
switch (p) {
|
|
case P7(byte b) -> {} //incorrect pattern type - no exception should occur
|
|
case P7(long l) -> {} //incorrect pattern type - no exception should occur
|
|
default -> {}
|
|
}
|
|
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) -> {}
|
|
}
|
|
}
|
|
|
|
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) {}
|
|
|
|
}
|