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