Files
kotlin-fork/compiler/testData/loadKotlin/classFun/FunDelegationToTraitImpl.kt
T

9 lines
105 B
Kotlin

package test
// test composed from KT-2193
trait A {
open fun f(): String = "test"
}
class B() : A