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
/
ttp3.C
blob
2350104cb592c88c21965fba718b056be69da92b
1
// { dg-do assemble }
2
3
template<class E,class F> class D
4
{
5
};
6
7
template<template<class> class D,class E> class C
8
{
9
};
10
11
int main()
12
{
13
C<D,int> c; // { dg-error "" } param list not match/sees it as not having a type
14
}