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

9 lines
147 B
Kotlin
Vendored

// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
fun foo(a: C) {
a?.foo(""<caret>!!)
}
class C {
fun foo(a: Any) {}
}