Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.law / operators19.C
blob715f7c1aede9db539d9cb57e6509ce0b31ec8f99
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     };