mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
9 lines
105 B
Kotlin
Vendored
9 lines
105 B
Kotlin
Vendored
import Foo.bar0 as bar
|
|
|
|
object Foo {
|
|
val bar0 = "OK"
|
|
|
|
fun test() = bar0
|
|
}
|
|
|
|
fun box() = Foo.test() |