Files
kotlin-fork/compiler/testData/readKotlinBinaryClass/classFun/FunDelegationToTraitImpl.kt
T
2012-06-09 17:13:38 +04:00

9 lines
105 B
Kotlin

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