// { dg-do assemble } // Origin: Mark Mitchell template void h(T&); template void g () { h ("abcdefghi"); } template void g(); template void h(T&) { T t = {}; }