7 lines
103 B
Kotlin
Vendored
7 lines
103 B
Kotlin
Vendored
fun foo(p: Any?, c: Collection<String>) {
|
|
for (e in c) {
|
|
print(p!!)
|
|
}
|
|
|
|
<caret>xxx
|
|
} |