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

10 lines
169 B
Kotlin
Vendored

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