mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
11 lines
146 B
Plaintext
Vendored
11 lines
146 B
Plaintext
Vendored
// "Convert receiver to parameter" "true"
|
|
|
|
actual class Foo {
|
|
actual fun foo(s: String, n: Int) {
|
|
|
|
}
|
|
}
|
|
|
|
fun Foo.test() {
|
|
foo("1", 2)
|
|
} |