Files
kotlin-fork/idea/testData/quickfix/nullables/beforeRemoveUselessNullable.kt
T
2013-03-02 21:39:27 +04:00

4 lines
86 B
Kotlin

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