Files
kotlin-fork/compiler/testData/ir/irText/firProblems/ErrorInDefaultValue.kt
T
2023-02-27 12:58:26 +00:00

10 lines
131 B
Kotlin
Vendored

interface A {
fun f(x: String = "OK"): String
}
class B : A {
override fun f(x: String) = x
}
class C(val x: A) : A by x