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