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 / crash53.C
1 // Build don't link:
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3
4 struct S 
5 {
6 };
7
8 S g ();
9
10 template <class T>
11 void f ()
12 {
13   const S& s = g ();
14 }
15
16 template void f<int>();