Files
kotlin-fork/idea/testData/quickfix/nullables/removeUselessNullable.kt
T
2021-06-15 20:19:52 +02:00

5 lines
103 B
Kotlin
Vendored

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