Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / ttp61.C
blob90ee042c124a59d73938870290cda2f58f479ff8
1 // { dg-do assemble  }
2 // Origin: grg at ai dot mit dot edu
4 class A;
5 template<template<class Ignored> class base> class C : 
6                                       public base<A> {
7  public:
8     C(A& newa) : base<A>(newa) {}
9 };