Files
kotlin/compiler/testData/loadJava/compiledKotlin/classFun/FunDelegationToTraitImpl.kt
2013-12-17 20:28:59 +04:00

9 lines
105 B
Kotlin

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