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 / ttp2.C
1 // Build don't link:
2
3 template<class E> class D
4 {
5 };
6
7 template<template<class> class D,int> class C
8 {
9 };
10
11 int main()
12 {
13         C<1,D> c;               // ERROR - args not match
14 }