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

5 lines
124 B
Kotlin
Vendored

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