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

3 lines
92 B
Kotlin
Vendored

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