blob: 909b86689d586a18a26ac3e89015a8b696c78fb2 [file] [log] [blame]
// { 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>();