Bring enum variants in scope for patterns

I guess another option is to allow the following:

match x {
    _::VarA => {},
    ...
}
8 Likes