mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
14 lines
200 B
Plaintext
Vendored
14 lines
200 B
Plaintext
Vendored
class Test {
|
|
inner class Inner {
|
|
fun bar() {
|
|
listOf("").forEach {
|
|
bizz(it)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
fun bizz(v:String) {
|
|
v.toString()
|
|
}
|
|
} |