summaryrefslogtreecommitdiffstats
path: root/test/SemaTemplate/enum-argument.cpp
blob: 101a1d0cd9da13d99b589374835e200073d24435 (plain)
1
2
3
4
5
6
7
// RUN: clang-cc -fsyntax-only -verify %s

enum Enum { val = 1 };
template <Enum v> struct C {
  typedef C<v> Self;
};
template struct C<val>;
OpenPOWER on IntegriCloud