Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / other / access1.C
blobee3239b93f2bd31a6f63dd551f6cd5f3b8d21345
1 // { dg-do compile }
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 12 Mar 2002 <nathan@codesourcery.com>
6 // PR c++/5659. Failed to notice default accessed changed
8 class Foo;
9 struct Foo 
11   static int m;
14 class Outer {
15   private:
16   class Inner;
17   Inner *i;
18   public:
19   void pub();
22 struct Outer::Inner {
23   Inner(int i);
26 void Outer::pub() { i = new Inner(Foo::m); }