Files
kotlin-fork/plugins/kotlinx-serialization/testData/codegen/Delegated.kt
T
2022-09-05 10:20:05 +00:00

14 lines
221 B
Kotlin
Vendored

// CURIOUS_ABOUT: <init>, <clinit>
// WITH_STDLIB
import kotlinx.serialization.*
fun interface A {
fun getText(): String
}
fun generateImpl() = A { "Hello, world!" }
@Serializable
class Test : A by generateImpl()