This commit was manufactured by cvs2svn to create branch

'gcc-3_1-branch'.

From-SVN: r50697
This commit is contained in:
No Author 2002-03-12 23:38:44 +00:00
parent aa23353c62
commit e37c338f98
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,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); }