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:
Roman Artemev
2021-05-13 17:05:18 +03:00
committed by TeamCityServer
parent 2865d8bd45
commit 5a284de2d4
15 changed files with 665 additions and 0 deletions
@@ -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()