Files
clang-p2996/lldb/test/API/python_api/sbvalue_synthetic/main.cpp
Pavel Labath 3068d277fd [lldb] Fix TestSBValueSynthetic on windows (#75908)
We don't have a std::vector formatter on windows, so use a custom
formatter in this test to avoid relying on std::vector.
2023-12-19 09:58:25 +01:00

14 lines
139 B
C++

struct Foo {
int real_child = 47;
};
struct HasFoo {
Foo f;
};
int main() {
Foo foo;
HasFoo has_foo;
return 0; // break here
}