8 lines
65 B
Kotlin
Vendored
8 lines
65 B
Kotlin
Vendored
class A
|
|
|
|
fun foo(s: String) {}
|
|
|
|
fun test(a: A) {
|
|
foo("$a")
|
|
}
|