1 // RUN: clang-cc -fsyntax-only -verify %s 2 3 enum Enum { val = 1 }; 4 template <Enum v> struct C { 5 typedef C<v> Self; 6 }; 7 template struct C<val>; 8