Files
kotlin-fork/idea/testData/inspectionsLocal/complexRedundantLet/comparisons.kt
T
2019-06-25 14:37:04 +07:00

5 lines
116 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun isAlphaOrBeta(str: String) = str.let<caret> { it == "Alpha" || it == "Beta" }