// PR c++/26559 template struct cond; template struct S { void f(int i) { cond<__builtin_constant_p(i)>(); } }; S<1> s;