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

8 lines
258 B
Plaintext
Vendored

// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
// ERROR: Assignments are not expressions, and only expressions are allowed in this context
fun foo() {
var x = 0
@Suppress("UNNECESSARY_NOT_NULL_ASSERTION")
(x = 1<caret>!!)
}