blob: f211cf67b4c6ab2e609cdf6b9e2f7807326b6c11 [file] [log] [blame]
// { dg-do run { target c++11 } }
// { dg-require-debug-mode "" }
// PR libstdc++/114316
#include <vector>
#include <algorithm>
#include <testsuite_hooks.h>
int main()
{
std::vector<int>::iterator it{};
VERIFY( std::find(it, it, 0) == it );
return 0;
}