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

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