Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / ttp6.C
blobe527dc521264b128b609a9a292411aa17c6462b0
1 // { dg-do run  }
2 template<int> class F
4 };
6 template<template<int> class D,class E> class C
8         D<1> d;
9 };
11 int main()
13         C<F,int> c;