aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/ttp49.C
blob: b0a02d2c6c4eea25bbb94387c9b560ae5b716dd9 (plain)
1
2
3
4
5
6
7
8
9
// Build don't link:

template <int i> class C {};
template <template <long> class TT> class D {};

int main()
{
	D<C> d;		// ERROR - args not match
}