]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/constexpr-initlist8.C
Regenerate riscv.opt.urls and i386.opt.urls
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-initlist8.C
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 };