5 lines
135 B
Kotlin
Vendored
5 lines
135 B
Kotlin
Vendored
class C {
|
|
val foo: String?
|
|
@Suppress("REDUNDANT_NULLABLE")
|
|
get(): String?? = null <!USELESS_CAST!>as Nothing??<!>
|
|
} |