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

7 lines
160 B
Kotlin

class C {
fun foo(): Any? {
[suppress("REDUNDANT_NULLABLE")]
val v: String?? = null <!USELESS_CAST!>as<!> Nothing??
return v
}
}