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

4 lines
109 B
Kotlin

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