OSDN Git Service

PR c++/9335
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / builtin1.C
1 // PR c++/26559
2
3 template<bool> struct cond;
4
5 template<int> struct S {
6   void f(int i) {
7     cond<__builtin_constant_p(i)>();
8   }
9 };
10
11 S<1> s;