aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-initlist8.C
blob: 3d859a8524d902e0b01371cc60b93fb949bab846 (plain)
1
2
3
4
5
6
7
// PR c++/63415
// { dg-do compile { target c++11 } }

template <typename T>
struct A {
  static constexpr int value = int(T{});
};