URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [other/] [access1.C] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
// { 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); }
Go to most recent revision | Compare with Previous | Blame | View Log