mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-22 04:55:50 -04:00
13 lines
235 B
C++
13 lines
235 B
C++
namespace std {
|
|
struct a {
|
|
a() {}
|
|
a(a &&);
|
|
};
|
|
template <class> struct au {
|
|
a ay;
|
|
~au() { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
|
|
}
|
|
};
|
|
}
|
|
int main() { std::au<int>{}; }
|