// "Change function signature to 'fun x(s: String)'" "true" open class A { open fun x(s: String) {} } class B : A() { override fun String.x() {} }