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

4 lines
91 B
Kotlin
Vendored

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