OSDN Git Service

* pt.c (tsubst_decl): Robustify.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / extern1.C
1 // Build don't link:
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3
4 template <class T>
5 void f ()
6 {
7   extern int i;
8   extern T j;
9   
10   i = j;
11 }
12
13 template void f<int>();