]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/static_assert17.C
Regenerate riscv.opt.urls and i386.opt.urls
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp0x / static_assert17.C
1 // PR c++/99893
2 // { dg-do compile { target c++11 } }
3
4 void f(...);
5
6 template<class... Ts>
7 void g() {
8 f([] { static_assert(Ts::value, ""); }...);
9 }