850d72f13f
TODO 'generateMethodCallTo' is a bloody mess that deserves rewriting.
10 lines
177 B
Kotlin
Vendored
10 lines
177 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
// IGNORE_BACKEND: JVM_IR
|
|
|
|
inline class R(private val r: Long) {
|
|
fun test() = { ok() }()
|
|
|
|
private fun ok() = "OK"
|
|
}
|
|
|
|
fun box() = R(0).test() |