1 namespace S { 2 struct T { 3 enum E { 4 alpha, beta, 5 } elt; 6 }; 7 } 8 9 struct S::T s = { .elt = S::T::E::alpha }; 10