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

4 lines
105 B
Kotlin

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