f80fcc7146
#KT-18907 Fixed
11 lines
144 B
Kotlin
Vendored
11 lines
144 B
Kotlin
Vendored
// "Convert receiver to parameter" "true"
|
|
|
|
impl class Foo {
|
|
impl fun <caret>String.foo(n: Int) {
|
|
|
|
}
|
|
}
|
|
|
|
fun Foo.test() {
|
|
"1".foo(2)
|
|
} |