summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/using7.C
blob: 69e27da4700e6bcdd9ebcd5b0bab1af303c2c7ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
template <typename T, bool=T::X> struct A
{
  int i;
};

template <typename T> struct B : A<T> // { dg-error "incomplete" }
{
  using A<T>::i; // { dg-error "incomplete" "incomplete" } 
                 // { dg-error "using" "using" { target *-*-* } 8 }
};

B<void> b; // { dg-message "instantiated" }