template class LinkedList { LinkedList* next; LinkedList* prev; }; class InstantiateIt { LinkedList m_list; };