summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/memory.h
blob: 1d59dc0bbf0b2bf83d57978f0224530a5d39244f (plain) (blame)
1
2
3
4
5
6
7
8
#ifndef MEMORY_H
#define MEMORY_H
namespace my_std {
  template<class T> class unique_ptr {
    T t;
  };
}
#endif