summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/inline3.C
blob: a614100154aabcb418a6454cd1fad137c2367ecf (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// { dg-do assemble  }
// { dg-options "-O3" }
// Origin: Mark Mitchell <mark@codesourcery.com>

class ostream;

struct S
{
  virtual void print(ostream&) const = 0;
};

template <class _Tp>
class vector
{
public:
  _Tp& operator[](unsigned __n) const { return *(_M_start + __n); }
  _Tp* _M_start;
};

class T
{
public:

  void print(ostream&) const;

  vector<S*> bcList_m;
};

void T::print(ostream& o) const
{
  int n = 3;

  for (int i = 0; i < n; ++i)
    bcList_m[i]->print(o);
  return;
}

ostream&
operator<<(ostream& o, const T& bcList)
{
  bcList.print(o);
  return o;
}