mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
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
|
|
}
|