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
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
inherit3.C
blob
97b9e5b3eaac91899ddd0f8b0d2aa51519005458
1
template <typename T>
2
struct set {
3
void insert (const T&);
4
template <class X>
5
void insert (X, X);
6
};
7
8
struct C : public set<int> {
9
void f (const int i) {
10
insert (i);
11
}
12
};