Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/callableReferences/inlineClassPrimaryConstructor.kt
T

16 lines
345 B
Kotlin
Vendored

// WITH_RUNTIME
@JvmInline
value class Z(val x: Int)
@JvmInline
value class L(val x: Long)
@JvmInline
value class S(val x: String)
fun box(): String {
if (42.let(::Z).x != 42) throw AssertionError()
if (1234L.let(::L).x != 1234L) throw AssertionError()
if ("abcdef".let(::S).x != "abcdef") throw AssertionError()
return "OK"
}