// FULL_JDK // FIR_IDENTICAL // WITH_STDLIB class A : ArrayList() { override fun sort(t: Comparator) { super.sort(t) } } fun foo(x: MutableList, y: ArrayList, z: A, c: Comparator) { x.sort(c) y.sort(c) z.sort(c) }