Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/functionNameMangling/localClassInFunctionWithMangledName.kt
T

13 lines
192 B
Kotlin
Vendored

// WITH_RUNTIME
@JvmInline
value class S(val string: String)
fun foo(s: S): String {
class Local {
fun bar() = s.string
}
return Local().bar()
}
fun box() = foo(S("OK"))