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