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

5 lines
135 B
Kotlin
Vendored

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