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

9 lines
146 B
Kotlin
Vendored

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