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