Files
kotlin-fork/compiler/testData/diagnostics/tests/suppress/oneWarning/onObject.kt
T
2013-09-24 06:58:40 -07:00

4 lines
106 B
Kotlin

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