Added a test
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
Resolve target: value-parameter val c: kotlin.Collection<kotlin.String>
|
||||
Skipped statements:
|
||||
println()
|
||||
@@ -0,0 +1,13 @@
|
||||
fun foo(c: Collection<String>): Collection<String> {
|
||||
return <caret>c.filter {
|
||||
val v = it.length
|
||||
val v1 = v * v
|
||||
if (v1 > 10) {
|
||||
true
|
||||
}
|
||||
else {
|
||||
println()
|
||||
it[0] == 'a'
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user