fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4. #include <boost/phoenix.hpp>
  5.  
  6. struct Foo
  7. {
  8. std::vector<int> bars;
  9. };
  10.  
  11. int main() {
  12. std::vector<Foo> foos{};
  13. foos.push_back(Foo{{1, 2, 3}});
  14. }
  15.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
Standard output is empty