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

6 lines
136 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun main(args: Array<String>) {
args[0].let<caret> { it.isBlank() && it.toByteOrNull() != null }
}