repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
memtemp98.C
blob
e8e97707097fcee78249a42d4e2349b4d9cb59e9
1
// { dg-do assemble }
2
//Purpose:
3
// Test nested template as template template arg.
4
//Result:
5
// Before the patch, got:
6
// `C' is not a template
7
8
template <template <typename S> class T>
9
struct A
10
{
11
T<int> m_t;
12
};
13
14
struct B
15
{
16
template <typename V>
17
struct C
18
{
19
V m_v;
20
};
21
};
22
23
A<B::C> z;