Files
clang-p2996/lldb/test/API/functionalities/rerun_and_expr/main.cpp
Michael Buch e1edcf7d14 Reland "[lldb][Target] Flush the scratch TypeSystem when owning lldb_private::Module gets unloaded"
This relands commit `71f3cac7895ad516ec25438f803ed3c9916c215a`

Fixes LLDB Linux bots and improves TypeSystem flushing for shared libraries.

Differential Revision: https://reviews.llvm.org/D138724
2022-12-05 16:57:42 +00:00

9 lines
73 B
C++

struct Foo {
int m_val = 42;
};
int main() {
Foo foo;
return 0;
}