PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / builtin1.C
bloba5b7271cb73de8a52e83b3877457bef93327a0ad
1 // PR c++/26559
3 template<bool> struct cond;
5 template<int> struct S {
6   void f(int i) {
7     cond<__builtin_constant_p(i)>();
8   }
9 };
11 S<1> s;