7 lines
159 B
Kotlin
Vendored
7 lines
159 B
Kotlin
Vendored
class C {
|
|
fun foo(): Any? {
|
|
@Suppress("REDUNDANT_NULLABLE")
|
|
val v: String?? = null <!USELESS_CAST!>as Nothing??<!>
|
|
return v
|
|
}
|
|
} |