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