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