Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/afterDotQualified.kt
T
2015-05-07 22:36:16 +03:00

10 lines
194 B
Kotlin

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