Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/beforeAssign.kt
T
2015-03-12 17:11:43 +03:00

7 lines
208 B
Kotlin

// "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
x = 1<caret>!!
}