Files
kotlin/compiler/testData/loadJava/compiledKotlin/classFun/FunDelegationToTraitImpl.kt
2015-05-12 19:43:17 +02:00

9 lines
109 B
Kotlin
Vendored

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