OSDN Git Service

new
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / ttp5.C
1 // Build don't link:
2
3 template<int> class D
4 {
5 };
6
7 template<template<int> class D,class E> class C
8 {
9         D<int> d;                       // ERROR - arg not match
10 };
11
12 int main()
13 {
14         C<D,int> c;
15 }