mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-15 08:31:35 +00:00
17 lines
265 B
Kotlin
Vendored
17 lines
265 B
Kotlin
Vendored
class Test {
|
|
inner class Inner {
|
|
fun bar() {
|
|
listOf("").forEach {
|
|
<caret>foo(it)
|
|
}
|
|
}
|
|
|
|
fun foo(v: String) {
|
|
bizz(v)
|
|
}
|
|
}
|
|
|
|
fun bizz(v:String) {
|
|
v.toString()
|
|
}
|
|
} |