Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/kt27113a.kt
T
2021-12-15 17:14:22 +00:00

17 lines
375 B
Kotlin
Vendored

// WITH_STDLIB
// WORKS_WHEN_VALUE_CLASS
// LANGUAGE: +ValueClasses
OPTIONAL_JVM_INLINE_ANNOTATION
value class A(val a: Any)
OPTIONAL_JVM_INLINE_ANNOTATION
value class NA(val b: Any?)
fun box(): String {
val ns1 = NA(A("abc"))
val ns2 = NA(null)
val t = "-$ns1-$ns2-"
if (t != "-NA(b=A(a=abc))-NA(b=null)-") return throw AssertionError(t)
return "OK"
}