Files
T
2019-08-27 17:26:08 +07:00

11 lines
155 B
Kotlin
Vendored

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