mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
9 lines
103 B
Kotlin
Vendored
9 lines
103 B
Kotlin
Vendored
actual class Foo {
|
|
actual fun foo(n: Int, s: String) {
|
|
|
|
}
|
|
}
|
|
|
|
fun Foo.test() {
|
|
foo(1, "2")
|
|
} |