xref: /llvm-project/lldb/test/API/functionalities/rerun_and_expr/main.cpp (revision e1edcf7d14c126b9ebd2a77fcd9041d056cce64a)
1 struct Foo {
2   int m_val = 42;
3 };
4 
main()5 int main() {
6   Foo foo;
7   return 0;
8 }
9