(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
crash53.C
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

struct S 
{
};

S g ();

template <class T>
void f ()
{
  const S& s = g ();
}

template void f<int>();