2 // { dg-do compile { target c++11 } }
6 static bool const value = false;
9 template<template<typename...> class T, typename... Args>
10 struct foo<T<Args...> >
12 static bool const value = true;
21 static_assert(foo<int_<0> >::value == false,
22 "picked up partial specialization, but should not have");