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

6 lines
143 B
Kotlin
Vendored

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