summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/crash6.C
blob: 09e8df07973ebb8a1a2a4285c6e8ca98a7999595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Build don't link:

template <class T> class List;
 
template <class T>
struct ListIterator
{
  ListIterator ();
  ListIterator (const ListIterator<T>& rhs);
};

template <class T>
struct List
{
  void length () const {
    for (ListIterator<T> li; li; ); // ERROR - used where a `bool'
  }
};

void test(List<int>& vals)
{
  vals.length();  // ERROR - instantiated from here
}