blob: 83a3e74fff899975244b95ea658da1b3860b9320 [file]
// ISSUE: KT-85605
// FILE: test.kt
package test
@Suppress("NOTHING_TO_INLINE")
inline fun test() {
run { val x: Any? by lazy { null } }
}
// FILE: box.kt
import test.*
fun box(): String {
run { test() }
return "OK"
}