aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/inline20.C
blob: a4af375f1642e1d25f46c88c08b0da33e3392d28 (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
52
53
54
55
56
57
58
// Build don't link:

struct A {
  int a, b, c, d;
};

inline void foo (int, A &);

struct D {
};

struct E: public D {
  void f (A &y)
  {
    foo (1, y);
  }
};

struct F: public D {
  void f (A &y)
  {
    foo (2, y);
  }
};

E *d;
F *e;

inline int baz (int y)
{
  A a;
  if (y) {
    d->f (a);
  } else {
    e->f (a);
  }
  return 0;
}

inline void foo (int y, A &z)
{
  z.a = baz (y);
  z.b = baz (y);
  z.c = baz (y);
  z.d = baz (y);
}

struct G {
  E a;
  F b;
  void bar (A &);
};

void G::bar(A &y)
{
  a.f(y);
  b.f(y);
}