1struct Outer {
2 Outer() {}
3
4 template <class T>
5 struct Inner {};
6};
7
8int main() {
9 Outer::Inner<int> oi;
10}
11

source code of lldb/test/API/lang/cpp/nested-template/main.cpp