blob: 3f47c58cd2a24fe4e2550dcbbad14a35b0c756e9 (
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
|
// PR c++/87145
// { dg-do compile { target c++11 } }
template<typename T, T t> struct integral_constant {
static constexpr T value = t;
};
enum class Enum : unsigned {};
struct Pod {
unsigned val;
constexpr operator Enum() const {
return static_cast<Enum>(val);
}
};
template<unsigned N>
constexpr void foo() {
using Foo = integral_constant<Enum, Pod{N}>;
}
int main() {
foo<2>();
}
|