Feedback Thread: DIP 1044--Enum Type Inference--Community Review Round 1

Walter Bright newshound2 at digitalmars.com
Fri Nov 18 21:29:15 UTC 2022


The following is not addressed:

     enum E { e };
     int e;
     auto x = e;  // which e?

     void bahb(int);
     void bahb(E);
     bahb(e);  // which bahb?



More information about the Digitalmars-d mailing list