Files
kotlin-fork/compiler/testData/diagnostics/tests/suppress/oneWarning/onLocalVariable.kt
T
2015-09-04 17:23:25 +03:00

7 lines
159 B
Kotlin
Vendored

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