Home | History | Annotate | Download | only in SemaTemplate
      1 // RUN: %clang_cc1 -fsyntax-only -fms-compatibility %s
      2 
      3 template<typename T>
      4 struct X {
      5   enum E *e;
      6 };
      7 
      8 X<int> xi;
      9