Refactor ix86_expand_vecop_qihi2.
[gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector / debug / 114316.cc
blobf211cf67b4c6ab2e609cdf6b9e2f7807326b6c11
1 // { dg-do run { target c++11 } }
2 // { dg-require-debug-mode "" }
4 // PR libstdc++/114316
6 #include <vector>
7 #include <algorithm>
9 #include <testsuite_hooks.h>
11 int main()
13 std::vector<int>::iterator it{};
14 VERIFY( std::find(it, it, 0) == it );
15 return 0;