repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove outermost loop parameter.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.martin
/
lookup1.C
blob
cb5eb07c9bc0f43d475e41f46e0ed81b437b6a2f
1
// { dg-do assemble }
2
//In the base class list, the context of the current is used
3
//reported by Stephen Vavasis <vavasis@CS.Cornell.EDU>
4
5
namespace N1 {
6
namespace N2 {
7
class A{};
8
class B;
9
}
10
}
11
12
class N1::N2::B : public A {
13
};
14
15
16
class C1 {
17
class A{};
18
class B;
19
};
20
21
class C1::B : A {
22
};