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

4 lines
122 B
Kotlin
Vendored

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