aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/arm12.C
blob: 89e2a4d2c82f23ac764cd43522fc52fca37e5370 (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
// Build don't link: 
// GROUPS passed ARM-compliance
// arm file
// From: belley@cae.ca (Benoit Belley 3218)
// Subject: Bad access control with private constructor and derivation
// Date: Fri, 28 May 1993 12:39:57 -0400 (EDT)

#include <iostream.h>

class X
{
public:
  void f();

private:
  X();
};

class Y : public X
{
public:
  Y();
};

X::X()
{// ERROR - .*
  cout << "X::X()" << endl;
}

void X::f()
{
  cout << "X::f()" << endl;
}

Y::Y()
{// ERROR -  within this
  cout << "Y::Y()" << endl;
}


int main()
{
  Y y;
  y.f();
}