summaryrefslogtreecommitdiffstats
path: root/test/SemaTemplate/enum-argument.cpp
blob: 1d782df202e398e4684f12099f447c9ad385335a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// RUN: clang-cc -fsyntax-only -verify %s

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

template<typename T>
struct get_size {
  static const unsigned value = sizeof(T);
};

template<typename T>
struct X0 {
  enum {
    Val1 = get_size<T>::value,
    Val2,
    SumOfValues = Val1 + Val2
  };
};

X0<int> x0i;
OpenPOWER on IntegriCloud