2010-07-22 18:02:54 +00:00
|
|
|
/*
|
2022-05-16 07:49:26 +00:00
|
|
|
* Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
|
2010-07-22 18:02:54 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
|
|
|
*/
|
|
|
|
|
2021-06-07 07:01:30 +00:00
|
|
|
/*
|
|
|
|
* @test
|
2023-06-21 09:16:12 +00:00
|
|
|
* @bug 8262891 8310133
|
2021-06-07 07:01:30 +00:00
|
|
|
* @summary Check errors reported for guarded patterns.
|
2022-11-17 00:49:53 +00:00
|
|
|
* @compile/fail/ref=GuardsErrors.out -XDrawDiagnostics GuardsErrors.java
|
2021-06-07 07:01:30 +00:00
|
|
|
*/
|
2010-07-22 18:02:54 +00:00
|
|
|
|
2022-05-16 07:49:26 +00:00
|
|
|
//TODO: tests and error recovery for misplaced guards
|
2021-06-07 07:01:30 +00:00
|
|
|
public class GuardsErrors {
|
2018-08-29 07:36:17 +00:00
|
|
|
|
2021-06-07 07:01:30 +00:00
|
|
|
void typeTestPatternSwitchTest(Object o, int check) {
|
|
|
|
switch (o) {
|
2022-05-16 07:49:26 +00:00
|
|
|
case Integer i when i == check -> System.err.println(); //error: check is not effectivelly final
|
2021-06-07 07:01:30 +00:00
|
|
|
default -> {}
|
2018-08-29 07:36:17 +00:00
|
|
|
}
|
2021-06-07 07:01:30 +00:00
|
|
|
check = 0;
|
|
|
|
|
2010-07-22 18:02:54 +00:00
|
|
|
}
|
2021-06-07 07:01:30 +00:00
|
|
|
|
2023-05-22 04:24:06 +00:00
|
|
|
void variablesInGuards(Object o) {
|
|
|
|
final int i1;
|
|
|
|
int i2 = 0;
|
|
|
|
switch (o) {
|
|
|
|
case Integer v when (i1 = 0) == 0 -> {}
|
|
|
|
case Integer v when i2++ == 0 -> {}
|
|
|
|
case Integer v when ++i2 == 0 -> {}
|
|
|
|
case Integer v when new Predicate() {
|
|
|
|
public boolean test() {
|
|
|
|
final int i;
|
|
|
|
i = 2;
|
|
|
|
return i == 2;
|
|
|
|
}
|
|
|
|
}.test() -> {}
|
2023-06-21 09:16:12 +00:00
|
|
|
case Integer v when v != null -> {
|
|
|
|
v = null;
|
|
|
|
}
|
2023-05-22 04:24:06 +00:00
|
|
|
case Number v1 when v1 instanceof Integer v2 && (v2 = 0) == 0 -> {}
|
|
|
|
default -> {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GuardsErrors(Object o) {
|
|
|
|
switch (o) {
|
|
|
|
case Integer v when (f = 0) == 0 -> {}
|
|
|
|
default -> throw new RuntimeException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final int f;
|
|
|
|
|
|
|
|
interface Predicate {
|
|
|
|
public boolean test();
|
|
|
|
}
|
2010-07-22 18:02:54 +00:00
|
|
|
}
|