Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / operators19.C
blobc9707beb194467849119a807d4cf4a8c73912ef8
1 // { dg-do assemble  }
2 // GROUPS passed operators
3 // opr-ampr file
4 // From: Jarkko Sonninen <Jarkko.Sonninen@lut.fi>
5 // Date:     Thu, 7 Oct 1993 08:25:26 +0200
6 // Subject:  type of base class member
7 // Message-ID: <199310070625.AA18653@kaisa.it.lut.fi>
9 class A {
10   public:
11     int j;
14 class B: public A {
15   public:
16     B () {
17         !(A::j);
18     }