12 lines
158 B
Kotlin
Vendored
12 lines
158 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
package test
|
|
|
|
private val prop = "O"
|
|
|
|
private fun test() = "K"
|
|
|
|
fun box(): String {
|
|
return {
|
|
prop + test()
|
|
}()
|
|
} |