Files
kotlin/compiler/testData/javaModules/namedAgainstSeveralAutomatic/main/usage.kt
Alexander Udalov 9199023952 Improve automatic module handling in module graph construction
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
2017-07-06 13:01:12 +03:00

7 lines
85 B
Kotlin
Vendored

import foo.Foo
import bar.Bar
fun usage(): String {
return "${Foo()}${Bar()}"
}