blob: 2324a374e690d798d00bd1e1b81ab45fc8b43f43 [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
struct S
{
};
S g ();
template <class T>
void f ()
{
const S& s = g ();
}
template void f<int>();