5a284de2d4
regenerate tests add test for EnumEntry's argument declarations add another test regenerate test fix test a bit
29 lines
282 B
Kotlin
Vendored
29 lines
282 B
Kotlin
Vendored
// TARGET_BACKEND: JS
|
|
|
|
// MODULE: lib
|
|
// FILE: l1.kt
|
|
|
|
package lib
|
|
|
|
private val d by lazy { "O" }
|
|
|
|
fun o() = d
|
|
|
|
|
|
// FILE: l2.kt
|
|
|
|
package lib
|
|
|
|
private val d by lazy { "K" }
|
|
|
|
fun k() = d
|
|
|
|
|
|
// MODULE: main(lib)
|
|
// FILE: main.kt
|
|
|
|
package main
|
|
|
|
import lib.*
|
|
|
|
fun box(): String = o() + k() |