// "Convert parameter to receiver" "true" expect open class A() { open fun String.c(a: Int) } class C : A() { override fun String.c(a: Int) {} }