xref: /llvm-project/lldb/test/API/functionalities/breakpoint/global_constructor/foo.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include "foo.h"
2 
Foo()3 Foo::Foo() : x(42) {
4     bool some_code = x == 42;  // !BR_foo
5 }
6 
7 Foo FooObj;
8