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
10 lines
217 B
Java
10 lines
217 B
Java
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
|
|
}
|
|
}
|