Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/resultInlining.kt
T
2020-03-24 18:58:19 +03:00

7 lines
101 B
Kotlin
Vendored

// WITH_RUNTIME
fun box(): String {
val ok = Result.success("OK")
return ok.getOrNull()!!
}