xref: /llvm-project/lldb/test/API/functionalities/rerun_and_expr/rebuild.cpp (revision e1edcf7d14c126b9ebd2a77fcd9041d056cce64a)
1 struct Base {
2   int m_base_val = 42;
3 };
4 
5 struct Foo : public Base {
6   int m_derived_val = 137;
7 };
8 
main()9 int main() {
10   Foo foo;
11   return 0;
12 }
13