OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / array5.C
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3
4 template <class T>
5 void h(T&);
6
7 template <class T>
8 void g () 
9 {
10   h ("abcdefghi");
11 }
12
13 template void g<int>();
14
15 template <class T>
16 void h(T&)
17 {
18   T t = {};
19 }
20
21