aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/bases3.C
blob: d4c43d483279062efcadc3bebe57ec97e8e81c46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/85146
// { dg-do compile { target c++11 } }

template<typename...> struct A {};

template<typename T> struct B
{
  typedef A<__direct_bases(T)...> C;	// { dg-error "incomplete type" }
};

struct X;

B<X> b;