Files
kotlin-fork/idea/testData/intentions/replaceSingleLineLetIntention/inWithMultipleParam.kt
T

6 lines
137 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(list: List<Int>) {
list.filter { it.let<caret> { value -> value in value..3000 } }
}