#include struct HasVector { std::vector v; }; int main() { std::vector vector = {42, 47}; HasVector has_vector = {vector}; return 0; // break here }