Files
kotlin-fork/idea/testData/quickfix/nullables/removeRedundantNullable.kt
T

5 lines
98 B
Kotlin
Vendored

// "Remove redundant '?'" "true"
fun main(args : Array<String>) {
val x : Int??<caret> = 15
}