Add jep511 module: module import declarations on JDK 25 and 27

Runnable sources, deliberate compile failures, three small modules and nine captured transcripts for import module (JEP 511).

Co-Authored-By: Claude Sonnet 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01TF9JWFvJSNm6HVzswzZU5a
This commit is contained in:
Claude
2026-09-24 10:57:57 +00:00
parent 2ebea58d39
commit 385cc25233
44 changed files with 715 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package demo;
import module acme.text;
public class Bad {
public static void main(String[] args) {
System.out.println(Helper.clean("x")); // Helper is in the non-exported acme.text.internal
}
}