java-topology/test/langtools/tools/javac/expression/IllegalParenthesis.java
russell@unturf.com 0a580b313d undefect. CWE-407 — 63 sites patched across 27 ecosystems
Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com

Patches, unit tests, benchmarks, whitepaper, and outreach briefs.
Public domain — no copyright claimed. Use freely.
2026-03-26 17:11:57 -04:00

16 lines
421 B
Java

/*
* @test /nodynamiccopyright/
* @bug 8058408
* @summary Test that illegal.parenthesized.expression error key is used for parenthesized expression used in cast
*
* @compile/fail/ref=IllegalParenthesis.out -XDrawDiagnostics IllegalParenthesis.java
*/
import java.time.LocalDate;
class IllegalParenthesis {
String s = (Integer).toString(123);
void f(){
LocalDate date = (LocalDate).now();
}
}