#include <iostream>
#include <vector>

void f(std::vector<int> const &v, std::vector<int>::const_iterator it = v.end())
{
}

int main()
{
	f({});
}
