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