Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/postfixPlusPlus.kt.after
T
2015-09-04 17:23:25 +03:00

11 lines
205 B
Plaintext
Vendored

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