1#include "lib.h"
2
3template <typename T> struct FooImpl {
4 using Ref = FooImpl<T> *;
5
6 Ref Create() { return new FooImpl<T>(); }
7};
8
9FooImpl<char> gLibLocalDef;
10BarImpl<char> *gLibExternalDef = nullptr;
11

source code of lldb/test/API/lang/cpp/typedef-to-outer-fwd/lib.cpp