blob: 101a1d0cd9da13d99b589374835e200073d24435 [file] [log] [blame]
Sebastian Redl599fe7c2009-05-27 19:21:29 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3enum Enum { val = 1 };
4template <Enum v> struct C {
5 typedef C<v> Self;
6};
7template struct C<val>;