// !DIAGNOSTICS: -UNUSED_PARAMETER // TARGET_BACKEND: JVM_IR open class B { open fun foo(t: T) {} } class C : B() { override fun foo(t: String) {} fun foo(o: Any) {} }