Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / ttp4.C
blob0b65ad6d5a5123d6302df771683113fc0f0b201e
1 // { dg-do assemble  }
3 template<class E> class D
5 };
7 template<template<class> class D,class E> class C
9         D<1> d;                 // { dg-error "" } arg not match
12 int main()
14         C<D,int> c;