aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/error15.C
blob: 5a1a3227dda4a613b092caeb05eeb1a680401860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// PR c++/16929

template <class T>
class A {
  int x;
};

template <class T>
class B {
protected:
    
  A<T> a; // { dg-error "" }
    
  void f(const A<T> * a1 = &a);
    
  void g(void);
};

template <class T>
void B<T>::g(void) {
  f(); // { dg-error "" }
}

template class B<long>; // { dg-error "" }