1 #include <stdio.h>
2 #include <vector>
3 
4 class Trivial {
5 public:
6   Trivial(int input) : m_int(input) {}
7 private:
8   int m_int;
9 
10 };
11 
12 class Foo {
13 private:
14   Trivial m_trivial = Trivial(100); // Set the before constructor breakpoint here
15 
16 public:
17   Foo(int input) {
18     printf("I have been made!\n");
19   }
20 
21 private:
22   Trivial m_other_trivial = Trivial(200); // Set the after constructor breakpoint here
23 };
24 
25 int
26 main()
27 {
28   Foo myFoo(10); // Set a breakpoint here to get started
29   return 0;
30 }
31 
32