aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/vt-34219-2.C
blob: 5bb2a21e431c60171319603ed14499eb5278e57c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-do compile { target c++11 } }
template<template<typename... T> class Comp, typename... T> void f( T... Value)
{
  static_assert( Comp<T>::value > 0, "" ); // { dg-error "parameter packs|T" }
}

template<template<typename... T> class Comp, typename... T> void g( T... Value)
{
  static_assert( Comp<T...>::value > 0, "" );
}

template <typename... T>
struct Foo
{
        static const int value=1;
};

int main()
{
        f<Foo>( 2 );
        g<Foo>( 2 );
}