18f10860df
#KT-14336 Fixed
7 lines
198 B
Plaintext
Vendored
7 lines
198 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'takeWhile{}'"
|
|
// IS_APPLICABLE_2: false
|
|
fun foo(n: Int, list: List<Int>): List<Int>{
|
|
val result = list.takeWhile { it >= n }
|
|
return result
|
|
} |