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

3 lines
111 B
Kotlin
Vendored

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