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

4 lines
106 B
Kotlin
Vendored

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