229e0d1631
Co-authored-by: Brian Goetz <brian.goetz@oracle.com> Co-authored-by: Gavin Bierman <gavin.bierman@oracle.com> Co-authored-by: Maurizio Cimadamore <maurizio.cimadamore@oracle.com> Co-authored-by: Srikanth Adayapalam <srikanth.adayapalam@oracle.com> Co-authored-by: Vicente Romero <vicente.romero@oracle.com> Reviewed-by: mcimadamore
23 lines
563 B
Java
23 lines
563 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8231827
|
|
* @summary Basic pattern bindings scope test
|
|
* @compile/fail/ref=DuplicateBindingTest.out -XDrawDiagnostics --enable-preview -source ${jdk.version} DuplicateBindingTest.java
|
|
*/
|
|
|
|
public class DuplicateBindingTest {
|
|
|
|
int f;
|
|
|
|
public static void main(String[] args) {
|
|
|
|
if (args != null) {
|
|
int s;
|
|
if (args[0] instanceof String s) { // NOT OK. Redef same scope.
|
|
}
|
|
if (args[0] instanceof String f) { // OK to redef field.
|
|
}
|
|
}
|
|
}
|
|
}
|