Files
kotlin/idea/testData/quickfix/nullables/removeUselessNullable.kt

4 lines
86 B
Kotlin
Vendored

// "Remove useless '?'" "true"
fun f(a: Int) : Boolean {
return a is Int?<caret>
}