aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic85.C
blob: 708104af9072b1dbf1f078929d736b386d4f0c1a (plain)
1
2
3
4
5
6
7
8
9
// PR c++/32565
// { dg-do compile { target c++11 } }

template<typename...> struct A1;
template<template<int, int...> class T> struct A1<T<0, 1> > {};
template<int, int, int...> struct B1 {};
A1<B1<0, 1> > a1;
template<int...> struct B2 {};
A1<B2<0, 1> > a2; // { dg-error "incomplete type" }