1▶#### Note: this error code is no longer emitted by the compiler.
2
3This error indicates that an empty match expression is invalid because the type
· · ·
3▶This error indicates that an empty match expression is invalid because the type
4it is matching on is non-empty (there exist values of this type). In safe code
5it is impossible to create an instance of an empty type, so empty match
· · ·
6▶expressions are almost never desired. This error is typically fixed by adding
7one or more cases to the match expression.
8