e5763a692f
Such substitution is crucial on codegen stage if the return type is reified (e.g. for `Array`) ^KT-59507: Fixed ^KT-59281: Fixed
8 lines
162 B
Kotlin
Vendored
8 lines
162 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
// KT-59544
|
|
// SKIP_SOURCEMAP_REMAPPING
|
|
|
|
inline fun h(b: (Int) -> Array<String?>) = b(1).size
|
|
|
|
fun box(): String = ('N' + h(::arrayOfNulls)) + "K" |