aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/other/access1.C
blob: ee3239b93f2bd31a6f63dd551f6cd5f3b8d21345 (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
// { dg-do compile }

// Copyright (C) 2002 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 12 Mar 2002 <nathan@codesourcery.com>

// PR c++/5659. Failed to notice default accessed changed

class Foo;
struct Foo 
{
  static int m;
};

class Outer {
  private:
  class Inner;
  Inner *i;
  public:
  void pub();
};

struct Outer::Inner {
  Inner(int i);
};

void Outer::pub() { i = new Inner(Foo::m); }