Files
2021-05-05 18:20:51 +03:00

8 lines
176 B
Kotlin
Vendored

// FIR_IDENTICAL
class C {
fun foo(): Any? {
@Suppress("REDUNDANT_NULLABLE")
val v: String?? = null <!USELESS_CAST!>as Nothing??<!>
return v
}
}