// Build don't link: // Origin: Mark Mitchell template struct S { template void f (); }; template template void S::f () { U& u; // ERROR - uninitialized reference } template void S::f(); // ERROR - instantiated from here