1template<typename T>
2struct Thing {
3    struct Inner {
4        T *ptr;
5    };
6
7    struct AnotherInner : Inner {
8    };
9};
10