summaryrefslogtreecommitdiff
path: root/test/PCH/cxx11-enum-template.cpp
blob: ca70601da77c0eff7de118cc02bfa7120d55eabd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// RUN: %clang_cc1 -pedantic-errors -std=c++11 -emit-pch %s -o %t
// RUN: %clang_cc1 -pedantic-errors -std=c++11 -include-pch %t -verify %s

#ifndef HEADER_INCLUDED

#define HEADER_INCLUDED

template<typename T> struct S {
  enum class E {
    e = T()
  };
};

S<int> a;
S<long>::E b;
S<double>::E c;
template struct S<char>;

#else

int k1 = (int)S<int>::E::e;
int k2 = (int)decltype(b)::e;
int k3 = (int)decltype(c)::e; // expected-error@10 {{conversion from 'double' to 'int'}} expected-note {{here}}
int k4 = (int)S<char>::E::e;

#endif