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