summaryrefslogtreecommitdiffstats
path: root/testsuite/cxx1lib2.C
blob: 77055da48dc7644ebfc4cf41903d4066cc4ed69c (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
#include "cxx1.h"

int A::a ()
{
  return 20;
}

int A::b ()
{
  return 21;
}

int B::a ()
{
  return 22;
}

int C::a ()
{
  return 23;
}

int C::b ()
{
  return 24;
}

C c;