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
/
member3.C
blob
4f87e57bcb3c8af9a14817d6ac1bf5489d6ad920
1
template<typename T>
2
struct A {
3
template<typename L> struct SubA { };
4
5
template<typename T1,typename L> void f(T1 & t1, SubA<L> & t2) { }
6
template<typename U> void g(SubA<U> & suba) { }
7
template<typename U> void h(SubA<U> & suba) { }
8
};
9
10
int main(void) {
11
int i;
12
A<int> a;
13
A<int>::SubA<int> suba;
14
15
a.f(i,suba);
16
a.g(suba);
17
a.h(suba);
18
}
19