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

6 lines
119 B
Kotlin
Vendored

// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
fun foo() {
do {}
while (true<caret>!!)
}