package test public trait MutableToReadOnly { 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) } }