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