On Friday, 18 November 2022 at 21:29:15 UTC, Walter Bright wrote:
> The following is not addressed:
>
> enum E { e };
> int e;
> auto x = e; // which e?
The int, the dip requires $e for the enum member.
> void bahb(int);
> void bahb(E);
> bahb(e); // which bahb?
Same.