mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-21 12:35:47 -04:00
12 lines
335 B
C++
12 lines
335 B
C++
namespace n {
|
|
template <class> class a {};
|
|
template <class b> struct shared_ptr {
|
|
template <class...>
|
|
static void make_shared() { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
|
|
typedef a<b> c;
|
|
c d;
|
|
}
|
|
};
|
|
} // namespace n
|
|
int main() { n::shared_ptr<int>::make_shared(); }
|