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

4 lines
106 B
Kotlin

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