1 // PR c++/63415
2 // { dg-do compile { target c++11 } }
3 
4 template <typename T>
5 struct A {
6   static constexpr int value = int(T{});
7 };
8