Files
kotlin-fork/compiler/testData/diagnostics/tests/cast/bare/RedundantNullable.kt
T
2021-11-24 23:13:40 +03:00

6 lines
132 B
Kotlin
Vendored

// FIR_IDENTICAL
// WITH_EXTENDED_CHECKERS
interface B<T>
class G<T>: B<T>
fun f(b: B<String>?) = b is G?<!REDUNDANT_NULLABLE!>?<!>