summaryrefslogtreecommitdiff
path: root/tests/headers/inner_template_self.hpp
blob: 1ae5af06d57724208eedd8421f3ad1c021576177 (plain)
1
2
3
4
5
6
7
8
9
10

template <typename T>
class LinkedList {
    LinkedList<T>* next;
    LinkedList* prev;
};

class InstantiateIt {
    LinkedList<int> m_list;
};