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

6 lines
115 B
Kotlin
Vendored

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