8 lines
176 B
Kotlin
Vendored
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
|
|
}
|
|
} |