OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / ttp3.C
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 }