Files
kotlin-fork/idea/testData/quickfix/nullables/beforeRemoveRedundantNullable.kt
T
2013-02-05 20:17:29 +04:00

5 lines
98 B
Kotlin

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