Files
kotlin-fork/plugins/kotlin-serialization/kotlin-serialization-compiler/testData/codegen/Delegated.kt
T

13 lines
219 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()