We don't have a std::vector formatter on windows, so use a custom formatter in this test to avoid relying on std::vector.
14 lines
139 B
C++
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
|
|
}
|