blob: a5b7271cb73de8a52e83b3877457bef93327a0ad [file] [log] [blame]
// PR c++/26559
template<bool> struct cond;
template<int> struct S {
void f(int i) {
cond<__builtin_constant_p(i)>();
}
};
S<1> s;