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

7 lines
150 B
Kotlin
Vendored

// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
infix fun Int.add(other: Int) = this + other
fun foo() {
1<caret>!! add 2
}