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

6 lines
122 B
Kotlin
Vendored

class C {
@Suppress("REDUNDANT_NULLABLE")
companion object {
val foo: String?? = null as Nothing??
}
}