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