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

11 lines
138 B
Kotlin

package test
public trait A<T> {
fun bar(): T
fun foo(): T = bar()
}
public class B : A<String> {
override fun bar() = ""
}