mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8257450: Start of release updates for JDK 17
8257451: Add SourceVersion.RELEASE_17 8257453: Add source 17 and target 17 to javac Reviewed-by: dholmes, erikj, iris, mikael, jjg, jlahoda, jwilhelm, mchung, ihse
This commit is contained in:
parent
d163c6fe2e
commit
6be1f5671e
77 changed files with 7607 additions and 59 deletions
|
@ -23,7 +23,7 @@
|
|||
|
||||
/*
|
||||
* @test
|
||||
* @bug 7157626 8001112 8188870 8173382 8193290 8205619 8245586
|
||||
* @bug 7157626 8001112 8188870 8173382 8193290 8205619 8245586 8257453
|
||||
* @summary Test major version for all legal combinations for -source and -target
|
||||
* @author sgoel
|
||||
*
|
||||
|
@ -51,7 +51,8 @@ public class ClassVersionChecker {
|
|||
THIRTEEN("13", 57),
|
||||
FOURTEEN("14", 58),
|
||||
FIFTEEN("15", 59),
|
||||
SIXTEEN("16", 60);
|
||||
SIXTEEN("16", 60),
|
||||
SEVENTEEN("17", 61);
|
||||
|
||||
private Version(String release, int classFileVer) {
|
||||
this.release = release;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue