OSDN Git Service

new
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / ttp4.C
1 // Build don't link:
2
3 template<class E> class D
4 {
5 };
6
7 template<template<class> class D,class E> class C
8 {
9         D<1> d;                 // ERROR - arg not match
10 };
11
12 int main()
13 {
14         C<D,int> c;
15 }