9c90d4e471
The test checks that new packages are not accidentally non-exported, so each new stdlib package must be either exported or specified in that test's expected non-exported package list.
14 lines
381 B
Java
14 lines
381 B
Java
@SuppressWarnings("module") // suppress warning about terminal digit
|
|
module kotlin.stdlib.jdk8 {
|
|
requires transitive kotlin.stdlib;
|
|
requires kotlin.stdlib.jdk7;
|
|
|
|
exports kotlin.jvm.jdk8;
|
|
exports kotlin.collections.jdk8;
|
|
exports kotlin.streams.jdk8;
|
|
exports kotlin.text.jdk8;
|
|
exports kotlin.time.jdk8;
|
|
|
|
opens kotlin.internal.jdk8 to kotlin.stdlib;
|
|
}
|