freebsd-dev/test/SemaTemplate/enum-argument.cpp

8 lines
143 B
C++
Raw Normal View History

2009-06-02 17:58:47 +00:00
// RUN: clang-cc -fsyntax-only -verify %s
enum Enum { val = 1 };
template <Enum v> struct C {
typedef C<v> Self;
};
template struct C<val>;