mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Load the Automatic-Module-Name manifest entry value if it's present (see http://mail.openjdk.java.net/pipermail/jpms-spec-observers/2017-May/000877.html), otherwise sanitize the name of the .jar file, throwing out all chars except alphanumeric, duplicate dots and a version qualifier
7 lines
75 B
Kotlin
Vendored
7 lines
75 B
Kotlin
Vendored
import m1.A
|
|
import m2.B
|
|
|
|
fun usage(): String {
|
|
return "${A()}${B()}"
|
|
}
|