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
/
lookup
/
name-clash2.C
blob
c200eeebd33e6c3b583c68c35d6514ed355a9a85
1
// { dg-do compile }
2
3
// Origin: Sven Bilke <bilkes@mail.nih.gov>
4
// PR c++/9777
5
6
struct A
7
{
8
struct X {};
9
struct Y { void X(); };
10
};
11
12
struct B : A
13
{
14
struct Y : A::Y {};
15
struct X : A::X {};
16
};