Files
kotlin-fork/compiler/testData/diagnostics/tests/suppress/oneWarning/onLocalVariable.kt
T
Evgeny Gerashchenko a3fdce8131 Highlighting "as Foo" for useless casts in gray.
#KT-6070 fixed
2014-12-08 17:30:47 +03:00

7 lines
160 B
Kotlin

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