// PR c++/33965 // { dg-options -std=c++0x } 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"); }