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

4 lines
88 B
Kotlin
Vendored

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