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