Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/prefixPlusPlus.kt
T

10 lines
169 B
Kotlin

// "Suppress 'REDUNDANT_NULLABLE' for statement " "true"
fun foo() {
var v = Box<String?>()
++(v: Box<String?<caret>?>)
}
class Box<T> {
fun inc() = this
}