4 lines
85 B
Kotlin
4 lines
85 B
Kotlin
trait B<T>
|
|
class G<T>: B<T>
|
|
|
|
fun f(b: B<String>?) = b is G?<!REDUNDANT_NULLABLE!>?<!> |