Files
kotlin/idea/testData/multiModuleQuickFix/memberFunParameterToReceiverByImpl/js/js.kt
2017-09-15 18:29:06 +03:00

11 lines
153 B
Kotlin
Vendored

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