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

7 lines
140 B
Kotlin
Vendored

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