Files
2015-09-04 17:23:25 +03:00

5 lines
153 B
Kotlin
Vendored

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