blob: 517e8f1236dafc9647392337f24517a26677cd49 [file] [log] [blame]
//ALLOW_AST_ACCESS
package test
public interface A<T> {
fun bar(): T
fun foo(): T = bar()
}
public class B : A<String> {
override fun bar() = ""
}