repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove mistakenly committed files
[gcc.git]
/
libstdc++-v3
/
testsuite
/
23_containers
/
set
/
debug
/
114316.cc
blob
126ec89b5e086ff9b918afef6a226af19b628603
1
// { dg-do run { target c++11 } }
2
// { dg-require-debug-mode "" }
3
4
// PR libstdc++/114316
5
6
#include <set>
7
#include <algorithm>
8
9
#include <testsuite_hooks.h>
10
11
int
main
()
12
{
13
std
::
set
<
int
>::
iterator it
{};
14
VERIFY
(
std
::
find
(
it
,
it
,
0
) ==
it
);
15
return
0
;
16
}