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

6 lines
128 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: true
fun foo(list: List<Int>) {
list.filter { it.let<caret> { it in IntRange(1, 10) } }
}