fork download
  1. #include <vector>
  2.  
  3. void Foo(std::vector< std::vector< int > > doubleVector)
  4. {
  5.  
  6. }
  7.  
  8. int main()
  9. {
  10. std::vector< int > singleVector;
  11. Foo({singleVector});
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 2980KB
stdin
Standard input is empty
stdout
Standard output is empty