aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic128.C
blob: 8c2d3b233592e9fbc1733ef8fd547042a64fbc91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/50303
// { dg-do compile { target c++11 } }

template<typename Interface>
struct A1 {
};

template<template<class I> class... Actions>
void g2() {
  g2<Actions...>();
}

int main()
{
  g2<A1>();
}