mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
Add all automatic modules to roots if at least one automatic module is added, as per http://cr.openjdk.java.net/~mr/jigsaw/spec/api/java/lang/module/package-summary.html
7 lines
85 B
Kotlin
Vendored
7 lines
85 B
Kotlin
Vendored
import foo.Foo
|
|
import bar.Bar
|
|
|
|
fun usage(): String {
|
|
return "${Foo()}${Bar()}"
|
|
}
|