Files
kotlin-fork/compiler/testData/diagnostics/tests/deparenthesize/parenthesizedSafeCall.kt
T

4 lines
79 B
Kotlin
Vendored

// FIR_IDENTICAL
fun f(s : String?) : Boolean {
return (s?.equals("a"))!!
}