Closed asutton closed 9 years ago
We want enumerators to be scoped to their enclosing enumerations. That is:
def X : typename = enum { A, B, C }; def x1 : X = X::A; // OK def x2 : X = A; // error
Implemented in 1dbd06e22fb167c907b08d02383d3c105b920025.
We want enumerators to be scoped to their enclosing enumerations. That is: