Files
kotlin-fork/compiler/testData/diagnostics/tests/suppress/oneWarning/onPropertyAccessor.fir.kt
T

5 lines
116 B
Kotlin
Vendored

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