On 20.11.22 22:32, Walter Bright wrote:
>
> But yes, it would be a (small) breaking change.
I really wouldn't want to run into this:
```d
enum Role{
guest,
member,
developer,
}
void main(){
Role r;
writeln(r); // error
}
```
Too messy for me, but up to you.