Files
kotlin-fork/compiler/testData/diagnostics/tests/suppress/oneWarning/onClass.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
105 B
Kotlin
Vendored

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