OSDN Git Service

Formatting fixes.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / crash53.C
1 // { dg-do assemble  }
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>();