Files
kotlin/compiler/testData/loadJava/compiledKotlin/class/InheritSubstitutedMethod.kt

12 lines
157 B
Kotlin

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