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

6 lines
155 B
Kotlin
Vendored

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