9e6b706a03
#KT-18982 Fixed Target versions 1.1.5
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() |