Files
kotlin-fork/compiler/testData/diagnostics/tests/suppress/oneWarning/onClassObject.kt
T
2013-09-24 06:58:40 -07:00

6 lines
136 B
Kotlin

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