OSDN Git Service

* g++.old-deja/g++.pt/static11.C: Add xtensa-*-elf* to the
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / ttp9.C
1 template<class E,class F=int> class D
2 {
3 };
4
5 template<template<class> class D,class E> class C
6 {
7         D<E>    d;
8 };
9
10 int main()
11 {
12         C<D,int> c;
13 }