summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/operators12.C
blob: cd5312bc0938482aaf1a56109a32b7979fe7f52d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Build don't link: 
// GROUPS passed operators
// opr-eq file
// Message-Id: <199311181618.AA27761@oil.cs.columbia.edu>
// From: Sam Fenster <fenster@cs.columbia.edu>
// Subject: g++ 2.5.3 can't disable assignment
// Date: Thu, 18 Nov 1993 11:18:18 -0500

class B
   {
   B &operator = (const B &);      //Disable assignment!
  public:
   virtual ~B () {}
   };

class D: public B
   {
  public:
   D () {}
   };