9 lines
101 B
Plaintext
Vendored
9 lines
101 B
Plaintext
Vendored
actual class Foo {
|
|
actual fun String.foo(n: Int) {
|
|
|
|
}
|
|
}
|
|
|
|
fun Foo.testJvm() {
|
|
"2".foo(1)
|
|
} |