add tests for private signatures
regenerate tests add test for EnumEntry's argument declarations add another test regenerate test fix test a bit
This commit is contained in:
committed by
TeamCityServer
parent
2865d8bd45
commit
5a284de2d4
+29
@@ -0,0 +1,29 @@
|
||||
// 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()
|
||||
Reference in New Issue
Block a user