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

4 lines
87 B
Kotlin
Vendored

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