Files
kotlin/compiler/testData/javaModules/simpleUseNonExportedPackage/moduleB/usage.kt
Alexander Udalov 03d83db660 Support -Xmodule-path and -Xadd-modules command line arguments
#KT-18598 In Progress
 #KT-18599 Fixed
2017-06-29 15:59:56 +03:00

9 lines
118 B
Kotlin
Vendored

package test
import a.*
import a.impl.*
val a1: A = A()
val a2: A = A.getInstance()
val a3: AImpl = A.getInstance()