290deb6ba4
Test that unnamed module does not read unexported package of a named module
9 lines
112 B
Kotlin
Vendored
9 lines
112 B
Kotlin
Vendored
import foo.Foo
|
|
import foo.impl.Impl
|
|
|
|
fun usage() {
|
|
Foo() // should be OK
|
|
|
|
Impl() // should be error
|
|
}
|