Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/implicitClass/ImplicitWithPackagesPackagesOverModule24.java
Mikhail Pyltsin 19096c38a1 [java-highlighting] WIP IDEA-372968 Support JEP 511: Module Import Declarations
- nothing changed in jep, more tests

GitOrigin-RevId: 03e655a19855acdfe1f7983b25c6aa7158b73393
2025-06-24 23:04:26 +00:00

7 lines
252 B
Java

<error descr="Module Import Declarations are not supported at language level '24'">import module java.base;</error>
import a.b.*;
class A{
<error descr="Reference to 'List' is ambiguous, both 'a.b.List' and 'java.util.List' match">List</error> a;
}