Files
kotlin-fork/compiler/testData/diagnostics/tests/suppress/oneWarning/onClassObject.kt
T
2021-05-05 18:20:51 +03:00

7 lines
158 B
Kotlin
Vendored

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