4 lines
140 B
Kotlin
Vendored
4 lines
140 B
Kotlin
Vendored
@Suppress("REDUNDANT_NULLABLE", "UNNECESSARY_NOT_NULL_ASSERTION")
|
|
object C {
|
|
fun foo(): String?? = ""!! <!USELESS_CAST!>as String??<!>
|
|
} |