Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

java 19: Updates for the just released Java 19 #5381

Merged
merged 1 commit into from Sep 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions biz.aQute.bndlib.tests/compilerversions/compile.sh
Expand Up @@ -34,6 +34,7 @@
# javac --release 16 -cp src src/jdk_16/*.java
# javac --release 17 -cp src src/jdk_17/*.java
# javac --release 18 -cp src src/jdk_18/*.java
# javac --release 19 -cp src src/jdk_19/*.java

# java -jar ../jar/ecj_3.2.2.jar -target 1.1 -source 1.3 -cp src src/eclipse_1_1/*.java
# java -jar ../jar/ecj_3.2.2.jar -target 1.2 -source 1.3 -cp src src/eclipse_1_2/*.java
Expand Down
Binary file modified biz.aQute.bndlib.tests/compilerversions/compilerversions.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
13 changes: 13 additions & 0 deletions biz.aQute.bndlib.tests/compilerversions/src/jdk_19/ClassRef.java
@@ -0,0 +1,13 @@
package jdk_19;

public class ClassRef {
class Inner {
};
static {
System.out.println(Inner.class);
}

public static void main() {
System.out.println(javax.swing.Box.class);
}
}