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

6 lines
141 B
Kotlin
Vendored

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