Files
kotlin-fork/compiler/testData/ir/irText/classes/dataClasses/delegationInSealed.kt
T
2023-03-22 15:18:17 +00:00

9 lines
191 B
Kotlin
Vendored

// WITH_STDLIB
// SKIP_KLIB_TEST
// IGNORE_BACKEND_K1: JS_IR
// IGNORE_BACKEND_K1: JS_IR_ES6
sealed class A : CharSequence {
data class B(val c: CharSequence) : A(), CharSequence by c
}