repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
other
/
access1.C
blob
ee3239b93f2bd31a6f63dd551f6cd5f3b8d21345
1
// { dg-do compile }
2
3
// Copyright (C) 2002 Free Software Foundation, Inc.
4
// Contributed by Nathan Sidwell 12 Mar 2002 <nathan@codesourcery.com>
5
6
// PR c++/5659. Failed to notice default accessed changed
7
8
class Foo;
9
struct Foo
10
{
11
static int m;
12
};
13
14
class Outer {
15
private:
16
class Inner;
17
Inner *i;
18
public:
19
void pub();
20
};
21
22
struct Outer::Inner {
23
Inner(int i);
24
};
25
26
void Outer::pub() { i = new Inner(Foo::m); }