Files
kotlin-fork/compiler/testData/diagnostics/tests/suppress/oneWarning/onClassObject.kt
T

6 lines
140 B
Kotlin
Vendored

class C {
suppress("REDUNDANT_NULLABLE")
companion object {
val foo: String?? = null <!USELESS_CAST!>as Nothing??<!>
}
}