Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/beforePostfixPlusPlus.kt
T
Andrey Breslav fc70a65f99 Support 'suppress for statement' quick fix
#KT-3319 Fixed
2013-09-24 07:05:20 -07:00

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
}