summaryrefslogtreecommitdiff
path: root/main.cpp
blob: d5670127a5f590313846697032b9bcd6a86ed7b9 (plain)
1
2
3
4
5
6
7
8
9
#include "vector.hpp"

int main()
{
	ft::vector<int> vec(10);
	ft::vector<int> other(vec);
	vec = other;
	return 0;
}