4 lines
106 B
Kotlin
4 lines
106 B
Kotlin
suppress("REDUNDANT_NULLABLE")
|
|
object C {
|
|
fun foo(): String?? = null <!USELESS_CAST!>as<!> Nothing??
|
|
} |