summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/ttp3.C
blob: 322dd1991e31a0530894d637e113f4c8cbb9ce93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link:

template<class E,class F> class D
{
};

template<template<class> class D,class E> class C
{
};

int main()
{
	C<D,int> c;		// ERROR - param list not match// WARNING - sees it as not having a type
}