llvm/lldb/test/API/lang/cpp/nested-template/main.cpp

struct Outer {
  Outer() {}

  template <class T>
  struct Inner {};
};

int main() {
  Outer::Inner<int> oi;
}