Files
javademos/jep511/broken/SqlDoesNotGiveBase.java
T
Claude 385cc25233 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
2026-09-24 10:57:57 +00:00

9 lines
223 B
Java

import module java.sql;
public class SqlDoesNotGiveBase {
public static void main(String[] args) {
List<String> l = List.of("x"); // java.util.List lives in java.base
System.out.println(l);
}
}