Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/unboxValueOfNullableInlineClassUsingInlineFunction.kt
T
2023-01-04 17:16:04 +00:00

8 lines
199 B
Kotlin
Vendored

// WITH_STDLIB
// WORKS_WHEN_VALUE_CLASS
// LANGUAGE: +ValueClasses
inline class X(val i: Int)
fun unbox(x: X?): Int = checkNotNull(x).i
fun box(): String = if (unbox(X(42)) == 42) "OK" else "Fail"