Does Kotlin have something like "intersection type...
# announcements
k
Does Kotlin have something like "intersection types"? I want to require a variable to extend both
interface A
and
interface B
. Sometimes you can get away by using generics, for example: