1 // { dg-do compile { target c++11 } }
2 template<template<typename... T> class Comp, typename... T> void f( T... Value)
4 static_assert( Comp<T>::value > 0, "" ); // { dg-error "parameter packs|T" }
7 template<template<typename... T> class Comp, typename... T> void g( T... Value)
9 static_assert( Comp<T...>::value > 0, "" );
12 template <typename... T>
15 static const int value=1;