// "Convert parameter to receiver" "true" actual class Foo { actual fun String.foo(n: Int) { } } fun Foo.test() { "2".foo(1) }