Home | History | Annotate | Download | only in odr
      1 struct Y {
      2   int m;
      3   double f;
      4 } y2;
      5 enum E { e2 };
      6 
      7 int g() {
      8   return y2.m + e2 + y2.f;
      9 }
     10