Files
kotlin-fork/compiler/testData/javaModules/namedReadsAutomaticWithUnrelatedAutomatic/main/module-info.java
T
Alexander Udalov 621fe41b17 JVM: restore incorrect DFS logic in JavaModuleGraph for compatibility
The problem is tracked in KT-66622. It should be fixed later, with a
proper deprecation, because otherwise it can potentially break a lot of
code.
2024-03-19 15:51:01 +00:00

5 lines
68 B
Java
Vendored

module main {
requires kotlin.stdlib;
requires unrelated;
}