jkbbwr
open class Base class First(val x: String) : Base() val x = listOf<Base>(First("test")) x.filter { it is First }.sortedBy { it.x }