summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaTemplate/instantiate-enum.cpp
blob: 665746cfd4de195e94b1a06977386025a2742ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: clang -fsyntax-only %s

template<typename T, T I, int J>
struct adder {
  enum {
    value = I + J,
    value2
  };
};

int array1[adder<long, 3, 4>::value == 7? 1 : -1];
OpenPOWER on IntegriCloud