Files
2021-05-05 18:20:51 +03:00

6 lines
152 B
Kotlin
Vendored

// FIR_IDENTICAL
class C {
val foo: String?
@Suppress("REDUNDANT_NULLABLE")
get(): String?? = null <!USELESS_CAST!>as Nothing??<!>
}