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