Files
kotlin-fork/compiler/testData/diagnostics/tests/suppress/manyWarnings/mixed.fir.kt
T

5 lines
134 B
Kotlin
Vendored

@Suppress("REDUNDANT_NULLABLE")
class C {
@Suppress("UNNECESSARY_NOT_NULL_ASSERTION")
fun foo(): String?? = ""!! as String??
}