llvm/lldb/test/API/lang/cpp/gmodules/templates/memory.h

#ifndef MEMORY_H
#define MEMORY_H
namespace my_std {
  template<class T> class unique_ptr {
    T t;
  };
}
#endif