It would be nice if you could use `typealias` so t...
# announcements
t
It would be nice if you could use
typealias
so that you could express an intersection type. so give
interface A {…}
and
interfact B {…}
you could do
typealias AB = A & B
. What are the thoughts on this? and drawbacks it would have?