// { dg-do assemble } // Origin: scott snyder class d0_Collection_Base {}; template class d0_List : virtual public d0_Collection_Base { public: d0_List (); template d0_List (Input_Iterator first, Input_Iterator last) ; }; void tlist () { const d0_List l4 (1, 2); }