16 lines
340 B
Kotlin
Vendored
16 lines
340 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
@JvmInline
|
|
value class Z(val x: Int = 1234)
|
|
@JvmInline
|
|
value class L(val x: Long = 1234L)
|
|
@JvmInline
|
|
value class S(val x: String = "foobar")
|
|
|
|
fun box(): String {
|
|
if (Z().x != 1234) throw AssertionError()
|
|
if (L().x != 1234L) throw AssertionError()
|
|
if (S().x != "foobar") throw AssertionError()
|
|
|
|
return "OK"
|
|
} |