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

12 lines
161 B
Kotlin
Vendored

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