Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/kt27706.kt
T
zhelenskiy c1dc1f7e33 Diagnostics renamed
Signed-off-by: zhelenskiy <zhelenskiy2000@yandex.ru>
2021-11-13 12:38:45 +01:00

18 lines
399 B
Kotlin
Vendored

// WITH_RUNTIME
@Suppress("OPTIONAL_DECLARATION_USAGE_IN_NON_COMMON_SOURCE")
@kotlin.jvm.JvmInline
value class Z(val x: Int) {
@Suppress("INNER_CLASS_INSIDE_VALUE_CLASS")
inner class Inner(val z: Z) {
val xx = x
}
}
fun box(): String {
val zi = Z(42).Inner(Z(100))
if (zi.xx != 42) throw AssertionError()
if (zi.z.x != 100) throw AssertionError()
return "OK"
}