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
/
template
/
inherit2.C
blob
4fd7ec063eeaeb6ce1a04ffbb9235de18df4f4e8
1
// PR c++/5658
2
3
// Copyright (C) 2002 Free Software Foundation, Inc.
4
// Contributed by Theodore.Papadopoulo 11 Feb 2002 <Theodore.Papadopoulo@sophia.inria.fr>
5
6
struct A {
7
typedef int iterator;
8
};
9
template <typename T>
10
struct B: public A {
11
template <typename U>
12
struct iterator {
13
};
14
B() { }
15
};
16
int main()
17
{
18
B<int> a;
19
}