fork download
  1. #include <iostream>
  2. #include <vector>
  3.  
  4. using namespace std;
  5.  
  6. class A
  7. {
  8. public:
  9. A() { cout << "A::A()"; }
  10. A(const A&) { cout << "A::A(const& A)"; }
  11. };
  12.  
  13. int main()
  14. {
  15. vector<A> v(5);
  16. return 0;
  17. }
Success #stdin #stdout 0.02s 2856KB
stdin
Standard input is empty
stdout
A::A()A::A(const& A)A::A(const& A)A::A(const& A)A::A(const& A)A::A(const& A)