FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / ttp7.C
blob0b982170e78ed99b1035b967d816ba345aea8df2
1 // Build don't link:
3 template<class E> class D
5 };
7 template<template<class> class D,class E> class C       // ERROR - ref below
9         D<int,int> d;                           // ERROR - arg not match
12 int main()
14         C<D,int> c;