mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
This avoids the conflict with the existing top-level functions in kotlin.io package. #KT-19192
11 lines
358 B
Java
11 lines
358 B
Java
@SuppressWarnings("module") // suppress warnings about terminal digit and exporting packages to not-yet-built kotlin-stdlib-jdk8
|
|
module kotlin.stdlib.jdk7 {
|
|
requires transitive kotlin.stdlib;
|
|
|
|
exports kotlin.jdk7;
|
|
exports kotlin.io.path;
|
|
|
|
exports kotlin.internal.jdk7 to kotlin.stdlib.jdk8;
|
|
opens kotlin.internal.jdk7 to kotlin.stdlib;
|
|
}
|