fork download
  1. #include <vector>
  2.  
  3. class NoCC
  4. {
  5. NoCC(const NoCC& v);
  6.  
  7. public:
  8. NoCC() {}
  9. NoCC(NoCC&& v) {}
  10. };
  11.  
  12. int main()
  13. {
  14. std::vector<NoCC> test;
  15. test.reserve(10);
  16. }
  17.  
Success #stdin #stdout 0s 3056KB
stdin
Standard input is empty
stdout
Standard output is empty