// PR c++/33965 // { dg-do compile { target c++11 } } template struct foo { static bool const value = false; }; template class T, typename... Args> struct foo > { static bool const value = true; }; template struct int_ {}; int main() { static_assert(foo >::value == false, "picked up partial specialization, but should not have"); }