Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/For1.kt
T
2014-11-24 20:11:27 +03:00

7 lines
103 B
Kotlin
Vendored

fun foo(p: Any?, c: Collection<String>) {
for (e in c) {
print(p!!)
}
<caret>xxx
}