package test public trait InheritProjectionKind { public trait Super { public fun foo(p: MutableList) public fun dummy() // to avoid loading as SAM interface } public trait Sub: Super { override fun foo(p: MutableList) } }