Files
kotlin-fork/compiler/testData/diagnostics/tests/override/DelegationFun.fir.kt
T

8 lines
86 B
Kotlin
Vendored

package delegation
interface Aaa {
fun foo()
}
class Bbb(aaa: Aaa) : Aaa by aaa