f3092bf390
#KT-9637 Fixed
15 lines
245 B
Kotlin
Vendored
15 lines
245 B
Kotlin
Vendored
//NO_CHECK_LAMBDA_INLINING
|
|
import test.*
|
|
|
|
class Boxer {
|
|
val box: () -> Box by injectFnc()
|
|
}
|
|
|
|
fun box(): String {
|
|
val box = Box()
|
|
registerFnc { box }
|
|
val prop = Boxer().box
|
|
if (prop() != box) return "fail 1"
|
|
|
|
return "OK"
|
|
} |