aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb44.C
blob: 54eab1536090167e11975b38fea147edf764a3ac (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
25
26
27
28
29
30
31
32
33
34
35
// spurious 'const' in error.
// For egcs-2.91.34, the warning message refers to
// class ostream & operator <<(class ostream &, const class Vector<T> &)
// Also, the template instantiation does not provide the missing
// friend function, the non-template function does

#include <stdio.h>
#include <iostream.h>

template <class T>
class Vector
{
  friend ostream& operator<< (ostream& out, const Vector<T> & vec); // WARNING - 
};

template <class T>
ostream& operator<< (ostream& out,  const Vector<T> & vec)
{
  abort();  // this should not be called
}

template class Vector<char>;
template ostream& operator<< (ostream& out,  const Vector<char> &);

ostream& operator<< (ostream& out, const Vector<char>&)
{
  return out;
}

int main()
{
  Vector<char> vc;
  ostream out;
  out << vc;
}